/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'SimHei', Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-chinese {
    font-size: 20px;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
}

.navbar.scrolled .brand-chinese {
    color: #333;
}

.brand-english {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar.scrolled .brand-english {
    color: #666;
}

.navbar-nav {
    width: 100%;
    justify-content: flex-end;
}

.navbar-nav .nav-link {
    color: white !important;
    font-size: 16px;
    margin: 0 5px;
    padding: 8px 10px !important;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

/* 英文导航栏特定样式 */
body[data-lang="en"] .navbar-nav .nav-link {
    font-size: 14px;
    margin: 0 3px;
    padding: 8px 8px !important;
}

.navbar.scrolled .nav-link {
    color: #333 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffd700 !important;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: #ff6b35 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-link::after {
    background: #ff6b35;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Language Switcher */
.language-switcher {
    margin-left: 10px;
}

.language-switcher .dropdown-toggle {
    cursor: pointer;
}

.language-switcher .dropdown-toggle::after {
    margin-left: 5px;
}

.language-switcher .dropdown-menu {
    min-width: 150px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.language-switcher .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-switcher .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #333;
}

.navbar.scrolled .language-switcher .dropdown-menu {
    background: white;
}

.navbar.scrolled .language-switcher .dropdown-item {
    color: #333;
}

.navbar.scrolled .language-switcher .dropdown-item:hover {
    background-color: #f0f0f0;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: url('../image/1 background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-title {
    font-size: 72px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
}

.hero-title .title-line {
    display: block;
    line-height: 1.1;
}

.hero-description {
    font-size: 20px;
    color: white;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    animation: fadeInUp 1.2s ease-out;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-title .title-line {
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .brand-chinese {
        font-size: 18px;
    }
    
    .brand-english {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title .title-line {
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .navbar-nav .nav-link {
        font-size: 14px;
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-title .title-line {
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 14px;
    }
}

/* Lottery Investment PPT Section */
.lottery-ppt-section {
    padding: 120px 0 80px; /* Top padding to account for fixed navbar */
}

.lottery-ppt-preview {
    margin: 0 auto;
    max-width: 100%;
}

/* About Us Section */
.about-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.about-header {
    margin-bottom: 60px;
}

.about-main-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.about-cards {
    margin-top: 40px;
}

.about-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.about-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-card:hover .about-card-image img {
    transform: scale(1.05);
}

.about-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.about-card-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.about-card-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.about-card-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    flex-grow: 1;
}

/* About Section Responsive */
@media (max-width: 992px) {
    .about-main-title {
        font-size: 36px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .about-card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-header {
        margin-bottom: 40px;
    }
    
    .about-main-title {
        font-size: 28px;
    }
    
    .about-subtitle {
        font-size: 15px;
    }
    
    .about-card-image {
        height: 200px;
    }
    
    .about-card-content {
        padding: 20px;
    }
    
    .about-card-title {
        font-size: 20px;
    }
    
    .about-card-description {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-main-title {
        font-size: 24px;
    }
    
    .about-subtitle {
        font-size: 14px;
    }
    
    .about-card-image {
        height: 180px;
    }
}

/* Team Section */
.team-section {
    background-color: white;
    padding: 80px 0;
}

.team-header {
    margin-bottom: 60px;
}

.team-main-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.team-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Team Masonry Layout */
.team-masonry {
    margin-top: 40px;
    width: 100%;
    overflow: hidden;
}

.team-masonry::after {
    content: '';
    display: block;
    clear: both;
}

/* Default: 3 columns for desktop - PC端强制3列 */
.team-card-item {
    width: 28%;
    margin-bottom: 20px;
    float: left;
    margin-right: 4%;
    box-sizing: border-box;
    clear: none;
}

/* 确保每行的第三个元素清除浮动，开始新行 */
.team-card-item:nth-child(3n) {
    margin-right: 0;
}

/* 确保顺序：第1、2、3个在第一行 */
.team-card-item:nth-child(1),
.team-card-item:nth-child(2),
.team-card-item:nth-child(3) {
    clear: none;
}

/* 第4个开始新行 */
.team-card-item:nth-child(4) {
    clear: left;
}

.team-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: none;
}

.team-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.team-image {
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.team-card:hover .team-image img {
    transform: scale(1.02);
}

.team-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-role {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.5;
}

.team-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
    flex-grow: 1;
}

.team-qualifications {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e8e8e8;
    padding-top: 12px;
    margin-top: auto;
}

.team-qualifications li {
    font-size: 13px;
    color: #666;
    line-height: 1.9;
    padding-left: 0;
    position: relative;
    margin-bottom: 6px;
}

/* Public Welfare Activities Page Section */
.public-welfare-page-section {
    background-color: white;
    padding: 150px 0 80px;
}

.public-welfare-page-header {
    margin-bottom: 50px;
}

.public-welfare-album-title {
    font-size: 48px;
    font-weight: normal;
    color: #333;
    margin: 0 0 15px 0;
}

.public-welfare-page-title {
    font-size: 36px;
    font-weight: normal;
    color: #333;
    margin: 0;
}

.public-welfare-page-content {
    margin-top: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.public-welfare-page-content .row {
    margin-left: 0;
    margin-right: 0;
}

.public-welfare-page-content .col-lg-6,
.public-welfare-page-content .col-md-6 {
    padding-left: 0;
    padding-right: 0;
}

.welfare-certificate-wrapper,
.welfare-item-wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
}

.welfare-image {
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.welfare-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.welfare-certificate {
    min-height: 500px;
    background-color: #fafafa;
}

.welfare-items {
    min-height: 250px;
    background-color: #fafafa;
    margin-bottom: 0 !important;
}

.welfare-group {
    min-height: 250px;
    background-color: #fafafa;
    margin-top: 0;
}

/* Public Welfare Activities Section (for index page) */
.public-welfare-section {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e8e8e8;
}

.public-welfare-header {
    margin-bottom: 50px;
}

.public-welfare-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.public-welfare-content {
    margin-top: 0;
}

.welfare-item {
    width: 100%;
}

.welfare-image {
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 0;
}

.welfare-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Public Welfare Page Responsive */
@media (max-width: 992px) {
    .public-welfare-page-section {
        padding: 120px 0 60px;
    }
    
    .public-welfare-page-header {
        margin-bottom: 40px;
    }
    
    .public-welfare-album-title {
        font-size: 36px;
    }
    
    .public-welfare-page-title {
        font-size: 28px;
    }
    
    .public-welfare-page-content {
        max-width: 900px;
    }
    
    .welfare-certificate {
        min-height: 450px;
    }
    
    .welfare-items,
    .welfare-group {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .public-welfare-page-section {
        padding: 100px 0 40px;
    }
    
    .public-welfare-page-header {
        margin-bottom: 30px;
    }
    
    .public-welfare-album-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .public-welfare-page-title {
        font-size: 22px;
    }
    
    .welfare-certificate-wrapper {
        margin-bottom: 30px;
    }
    
    .public-welfare-page-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .welfare-certificate {
        min-height: 350px;
    }
    
    .welfare-items,
    .welfare-group {
        min-height: 180px;
    }
    
    .welfare-item-wrapper {
        margin-bottom: 0 !important;
    }
}

/* Team Offline Activities Section */
.team-offline-activities-section {
    background-color: white;
    padding: 80px 0;
}

.team-offline-header {
    margin-bottom: 50px;
}

.team-offline-album-title {
    font-size: 48px;
    font-weight: normal;
    color: #333;
    margin: 0 0 15px 0;
}

.team-offline-title {
    font-size: 36px;
    font-weight: normal;
    color: #333;
    margin: 0;
}

.team-offline-content {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-offline-content .row {
    margin-left: -15px;
    margin-right: -15px;
}

.team-offline-content .col-lg-6,
.team-offline-content .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
}

.media-item {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
}

.media-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.media-video {
    width: 100%;
    height: 100%;
    display: block;
    background-color: #000;
    object-fit: cover;
}

.video-item {
    background-color: #000;
    cursor: pointer;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
}

.video-item:hover .video-play-button {
    opacity: 1;
}

.video-play-button svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.image-item {
    background-color: #fafafa;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    padding: 20px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    transition: opacity 0.3s;
}

.video-modal-close:hover {
    opacity: 0.7;
}

.video-modal-player {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Team Offline Activities Responsive */
@media (max-width: 992px) {
    .team-offline-activities-section {
        padding: 60px 0;
    }
    
    .team-offline-header {
        margin-bottom: 40px;
    }
    
    .team-offline-album-title {
        font-size: 36px;
    }
    
    .team-offline-title {
        font-size: 28px;
    }
    
    .team-offline-content {
        max-width: 900px;
    }
    
    .media-item {
        height: 300px;
    }
    
    .team-offline-content .row {
        margin-left: -12px;
        margin-right: -12px;
    }
    
    .team-offline-content .col-lg-6,
    .team-offline-content .col-md-6 {
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .team-offline-activities-section {
        padding: 40px 0;
    }
    
    .team-offline-header {
        margin-bottom: 30px;
    }
    
    .team-offline-album-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .team-offline-title {
        font-size: 22px;
    }
    
    .team-offline-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .media-item {
        height: 250px;
    }
    
    .team-offline-content .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .team-offline-content .col-lg-6,
    .team-offline-content .col-md-6 {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 20px;
    }
    
    .video-modal-content {
        width: 95%;
        padding: 10px;
    }
    
    .video-modal-close {
        top: -30px;
        font-size: 30px;
    }
    
    .team-offline-content .col-lg-6.offset-lg-3,
    .team-offline-content .col-md-6.offset-md-3 {
        margin-left: 0;
    }
}

/* Public Welfare Responsive (for index page) */
@media (max-width: 992px) {
    .public-welfare-section {
        margin-bottom: 60px;
        padding-bottom: 40px;
    }
    
    .public-welfare-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .public-welfare-section {
        margin-bottom: 50px;
        padding-bottom: 30px;
    }
    
    .public-welfare-header {
        margin-bottom: 30px;
    }
    
    .public-welfare-title {
        font-size: 28px;
    }
}

/* Team Section Responsive */
@media (max-width: 992px) {
    .team-card-item {
        width: 50% !important;
        padding-right: 8px !important;
    }
    
    .team-card-item:nth-child(2n) {
        padding-right: 0 !important;
    }
    
    .team-card-item:nth-child(3n) {
        padding-right: 8px !important;
    }
    
    .team-main-title {
        font-size: 36px;
    }
    
    .team-subtitle {
        font-size: 16px;
    }
    
    .team-name {
        font-size: 20px;
    }
    
    .team-content {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-header {
        margin-bottom: 40px;
    }
    
    .team-card-item {
        width: 50% !important;
        padding-right: 6px !important;
    }
    
    .team-card-item:nth-child(2n) {
        padding-right: 0 !important;
    }
    
    .team-card-item:nth-child(3n) {
        padding-right: 6px !important;
    }
    
    .team-main-title {
        font-size: 28px;
    }
    
    .team-subtitle {
        font-size: 15px;
    }
    
    .team-content {
        padding: 18px 12px;
    }
    
    .team-name {
        font-size: 18px;
    }
    
    .team-role {
        font-size: 14px;
    }
    
    .team-description {
        font-size: 13px;
    }
    
    .team-qualifications li {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .team-section {
        padding: 40px 0;
    }
    
    .team-card-item {
        width: 100% !important;
        padding-right: 0 !important;
    }
    
    .team-card-item:nth-child(3n),
    .team-card-item:nth-child(2n) {
        padding-right: 0 !important;
    }
    
    .team-main-title {
        font-size: 24px;
    }
    
    .team-subtitle {
        font-size: 14px;
    }
}

/* Investment Principles Section */
.investment-principles-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: white;
}

.investment-card-wrapper {
    width: 100%;
}

.investment-card {
    background: #2a2a2a;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.investment-image {
    width: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.investment-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.investment-content {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #2a2a2a;
}

.investment-title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.investment-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

/* Investment Principles Responsive */
@media (max-width: 992px) {
    .investment-principles-section {
        padding: 60px 0;
    }
    
    .investment-card {
        flex-direction: column;
    }
    
    .investment-image {
        width: 100%;
        height: 300px;
    }
    
    .investment-content {
        width: 100%;
        padding: 30px 25px;
    }
    
    .investment-title {
        font-size: 28px;
    }
    
    .investment-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .investment-principles-section {
        padding: 40px 0;
    }
    
    .investment-image {
        height: 250px;
    }
    
    .investment-content {
        padding: 25px 20px;
    }
    
    .investment-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .investment-description {
        font-size: 14px;
    }
}

/* Cooperation Strategy Section */
.cooperation-strategy-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    color: #333;
}

.cooperation-header {
    margin-bottom: 60px;
}

.cooperation-main-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.cooperation-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.cooperation-card-wrapper {
    width: 100%;
}

.cooperation-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.cooperation-image {
    width: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.cooperation-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cooperation-content {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.cooperation-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cooperation-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Cooperation Strategy Responsive */
@media (max-width: 992px) {
    .cooperation-strategy-section {
        padding: 60px 0;
    }
    
    .cooperation-header {
        margin-bottom: 40px;
    }
    
    .cooperation-main-title {
        font-size: 36px;
    }
    
    .cooperation-subtitle {
        font-size: 16px;
    }
    
    .cooperation-card {
        flex-direction: column;
    }
    
    .cooperation-image {
        width: 100%;
        height: 300px;
    }
    
    .cooperation-content {
        width: 100%;
        padding: 30px 25px;
    }
    
    .cooperation-title {
        font-size: 24px;
    }
    
    .cooperation-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .cooperation-strategy-section {
        padding: 40px 0;
    }
    
    .cooperation-main-title {
        font-size: 28px;
    }
    
    .cooperation-subtitle {
        font-size: 15px;
    }
    
    .cooperation-image {
        height: 250px;
    }
    
    .cooperation-content {
        padding: 25px 20px;
    }
    
    .cooperation-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .cooperation-description {
        font-size: 14px;
    }
}

/* Footer */
.site-footer {
    background-color: white;
    padding: 40px 0;
    border-top: 1px solid #e8e8e8;
        flex-shrink: 0;
}

.footer-content {
    width: 100%;
}

.footer-copyright {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
}

/* Services Page Styles */
.services-section {
    background-color: white;
    padding: 150px 0 80px;
}

.services-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-main-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.services-subtitle {
    font-size: 20px;
    color: #666;
    margin: 0;
}

.lottery-features {
    margin-top: 0;
}

.lottery-feature-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lottery-feature-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.lottery-feature-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.lottery-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lottery-feature-card:hover .lottery-feature-image img {
    transform: scale(1.05);
}

.lottery-feature-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lottery-feature-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.lottery-feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Stock Market Investment Section */
.stock-market-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.stock-market-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stock-market-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.stock-market-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.stock-market-features {
    margin-top: 0;
}

.stock-market-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stock-market-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.stock-market-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.stock-market-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stock-market-card:hover .stock-market-image img {
    transform: scale(1.05);
}

.stock-market-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.stock-market-card-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.stock-market-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.stock-market-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Services Page Responsive */
@media (max-width: 992px) {
    .services-section {
        padding: 120px 0 60px;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-main-title {
        font-size: 36px;
    }
    
    .services-subtitle {
        font-size: 18px;
    }
    
    .lottery-feature-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 100px 0 40px;
    }
    
    .services-header {
        margin-bottom: 30px;
    }
    
    .services-main-title {
        font-size: 28px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .lottery-feature-image {
        height: 200px;
    }
    
    .lottery-feature-content {
        padding: 25px 20px;
    }
    
    .lottery-feature-title {
        font-size: 22px;
    }
    
    .lottery-feature-description {
        font-size: 15px;
    }
    
    .stock-market-section {
        padding: 60px 0;
    }
    
    .stock-market-header {
        margin-bottom: 40px;
    }
    
    .stock-market-title {
        font-size: 32px;
    }
    
    .stock-market-subtitle {
        font-size: 16px;
    }
    
    .stock-market-image {
        height: 250px;
    }
    
    .stock-market-content {
        padding: 25px 20px;
    }
    
    .stock-market-card-title {
        font-size: 22px;
    }
    
    .stock-market-description {
        font-size: 15px;
    }
}

/* Fund Investment Section */
.fund-investment-section {
    background-color: white;
    padding: 80px 0;
}

.fund-item {
    margin-bottom: 60px;
}

.fund-item:last-child {
    margin-bottom: 0;
}

.fund-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.fund-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fund-content {
    padding: 40px;
}

.fund-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.fund-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Fund Investment Responsive */
@media (max-width: 992px) {
    .fund-investment-section {
        padding: 60px 0;
    }
    
    .fund-item {
        margin-bottom: 50px;
    }
    
    .fund-image {
        height: 350px;
    }
    
    .fund-content {
        padding: 30px 20px;
    }
    
    .fund-title {
        font-size: 28px;
    }
    
    .fund-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .fund-investment-section {
        padding: 40px 0;
    }
    
    .fund-item {
        margin-bottom: 40px;
    }
    
    .fund-image {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .fund-content {
        padding: 20px 15px;
    }
    
    .fund-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .fund-description {
        font-size: 15px;
    }
}

/* Government Bonds Investment Section */
.government-bonds-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.government-bonds-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.government-bonds-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.government-bonds-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.bond-item {
    margin-bottom: 60px;
}

.bond-item:last-child {
    margin-bottom: 0;
}

.bond-image {
    width: 80%;
    max-width: 500px;
    height: 250px;
    overflow: hidden;
    background-color: #e0e0e0;
    margin: 0 auto;
}

.bond-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bond-content {
    padding: 40px;
}

.bond-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.bond-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Government Bonds Responsive */
@media (max-width: 992px) {
    .government-bonds-section {
        padding: 60px 0;
    }
    
    .government-bonds-header {
        margin-bottom: 50px;
    }
    
    .government-bonds-title {
        font-size: 36px;
    }
    
    .government-bonds-subtitle {
        font-size: 16px;
    }
    
    .bond-item {
        margin-bottom: 50px;
    }
    
    .bond-image {
        width: 85%;
        max-width: 450px;
        height: 230px;
    }
    
    .bond-content {
        padding: 30px 20px;
    }
    
    .bond-title {
        font-size: 28px;
    }
    
    .bond-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .government-bonds-section {
        padding: 40px 0;
    }
    
    .government-bonds-header {
        margin-bottom: 40px;
    }
    
    .government-bonds-title {
        font-size: 28px;
    }
    
    .government-bonds-subtitle {
        font-size: 15px;
    }
    
    .bond-item {
        margin-bottom: 40px;
    }
    
    .bond-image {
        width: 90%;
        max-width: 400px;
        height: 180px;
        margin-bottom: 20px;
    }
    
    .bond-content {
        padding: 20px 15px;
    }
    
    .bond-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .bond-description {
        font-size: 15px;
    }
}

/* Digital Currency Investment Section */
.digital-currency-section {
    background-color: white;
    padding: 80px 0;
}

.digital-currency-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.digital-currency-title {
    font-size: 42px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.digital-currency-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.digital-currency-features {
    margin-top: 0;
}

.digital-currency-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.digital-currency-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.digital-currency-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.digital-currency-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.digital-currency-card:hover .digital-currency-image img {
    transform: scale(1.05);
}

.digital-currency-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.digital-currency-card-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.digital-currency-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Digital Currency Responsive */
@media (max-width: 992px) {
    .digital-currency-section {
        padding: 60px 0;
    }
    
    .digital-currency-header {
        margin-bottom: 40px;
    }
    
    .digital-currency-title {
        font-size: 36px;
    }
    
    .digital-currency-subtitle {
        font-size: 16px;
    }
    
    .digital-currency-image {
        height: 250px;
    }
    
    .digital-currency-content {
        padding: 25px 20px;
    }
    
    .digital-currency-card-title {
        font-size: 22px;
    }
    
    .digital-currency-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .digital-currency-section {
        padding: 40px 0;
    }
    
    .digital-currency-header {
        margin-bottom: 30px;
    }
    
    .digital-currency-title {
        font-size: 28px;
    }
    
    .digital-currency-subtitle {
        font-size: 15px;
    }
    
    .digital-currency-image {
        height: 200px;
    }
    
    .digital-currency-content {
        padding: 20px 15px;
    }
    
    .digital-currency-card-title {
        font-size: 20px;
    }
    
    .digital-currency-description {
        font-size: 14px;
    }
}

/* Investment Strategy Page Section */
.investment-strategy-page-section {
    background-color: white;
    padding: 150px 0 80px;
}

.strategy-page-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.strategy-page-title {
    font-size: 48px;
    font-weight: normal;
    color: #333;
    margin-bottom: 20px;
}

.strategy-page-subtitle {
    font-size: 20px;
    font-weight: normal;
    color: #666;
    margin: 0;
}

.strategy-cards {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.strategy-card {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.strategy-card-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.strategy-card-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Investment Strategy Page Responsive */
@media (max-width: 992px) {
    .investment-strategy-page-section {
        padding: 120px 0 60px;
    }
    
    .strategy-page-header {
        margin-bottom: 50px;
    }
    
    .strategy-page-title {
        font-size: 36px;
    }
    
    .strategy-page-subtitle {
        font-size: 18px;
    }
    
    .strategy-card {
        padding: 30px;
    }
    
    .strategy-card-title {
        font-size: 22px;
    }
    
    .strategy-card-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .investment-strategy-page-section {
        padding: 100px 0 40px;
    }
    
    .strategy-page-header {
        margin-bottom: 40px;
    }
    
    .strategy-page-title {
        font-size: 28px;
    }
    
    .strategy-page-subtitle {
        font-size: 16px;
    }
    
    .strategy-card {
        padding: 25px 20px;
    }
    
    .strategy-card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .strategy-card-description {
        font-size: 14px;
    }
}

/* Market Dynamic Analysis Section */
.market-analysis-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.market-analysis-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.market-analysis-title {
    font-size: 42px;
    font-weight: normal;
    color: #333;
    margin-bottom: 15px;
}

.market-analysis-subtitle {
    font-size: 18px;
    font-weight: normal;
    color: #666;
    margin: 0;
}

.market-analysis-cards {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.analysis-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.analysis-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.analysis-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.analysis-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.analysis-card:hover .analysis-image img {
    transform: scale(1.05);
}

.analysis-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.analysis-card-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.analysis-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.analysis-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    flex-grow: 1;
}

/* Market Analysis Responsive */
@media (max-width: 992px) {
    .market-analysis-section {
        padding: 60px 0;
    }
    
    .market-analysis-header {
        margin-bottom: 40px;
    }
    
    .market-analysis-title {
        font-size: 36px;
    }
    
    .market-analysis-subtitle {
        font-size: 16px;
    }
    
    .analysis-image {
        height: 220px;
    }
    
    .analysis-content {
        padding: 25px 20px;
    }
    
    .analysis-card-title {
        font-size: 20px;
    }
    
    .analysis-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .market-analysis-section {
        padding: 40px 0;
    }
    
    .market-analysis-header {
        margin-bottom: 30px;
    }
    
    .market-analysis-title {
        font-size: 28px;
    }
    
    .market-analysis-subtitle {
        font-size: 15px;
    }
    
    .analysis-image {
        height: 200px;
    }
    
    .analysis-content {
        padding: 20px 15px;
    }
    
    .analysis-card-title {
        font-size: 18px;
    }
    
    .analysis-description {
        font-size: 14px;
    }
}

/* Investment Return Overview Section */
.investment-return-section {
    background-color: white;
    padding: 80px 0;
}

.return-overview-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.return-overview-title {
    font-size: 42px;
    font-weight: normal;
    color: #333;
    margin-bottom: 15px;
}

.return-overview-subtitle {
    font-size: 18px;
    font-weight: normal;
    color: #666;
    margin: 0;
}

.return-cards {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.return-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.return-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.return-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.return-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.return-card:hover .return-image img {
    transform: scale(1.05);
}

.return-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.return-card-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.return-card-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.return-view-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    border-radius: 0;
}

.return-view-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
}

/* Investment Return Responsive */
@media (max-width: 992px) {
    .investment-return-section {
        padding: 60px 0;
    }
    
    .return-overview-header {
        margin-bottom: 40px;
    }
    
    .return-overview-title {
        font-size: 36px;
    }
    
    .return-overview-subtitle {
        font-size: 16px;
    }
    
    .return-image {
        height: 250px;
    }
    
    .return-content {
        padding: 25px 20px;
    }
    
    .return-card-title {
        font-size: 20px;
    }
    
    .return-card-description {
        font-size: 15px;
    }
    
    .return-view-btn {
        padding: 10px 25px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .investment-return-section {
        padding: 40px 0;
    }
    
    .return-overview-header {
        margin-bottom: 30px;
    }
    
    .return-overview-title {
        font-size: 28px;
    }
    
    .return-overview-subtitle {
        font-size: 15px;
    }
    
    .return-image {
        height: 200px;
    }
    
    .return-content {
        padding: 20px 15px;
    }
    
    .return-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .return-card-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .return-view-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Success Investment Stories Section */
.success-stories-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.success-stories-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.success-stories-title {
    font-size: 42px;
    font-weight: normal;
    color: #333;
    margin-bottom: 15px;
}

.success-stories-subtitle {
    font-size: 18px;
    font-weight: normal;
    color: #666;
    margin: 0;
}

.success-stories-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.success-story-item {
    margin-bottom: 60px;
}

.success-story-item:last-child {
    margin-bottom: 0;
}

.story-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 40px;
}

.story-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.story-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Success Stories Responsive */
@media (max-width: 992px) {
    .success-stories-section {
        padding: 60px 0;
    }
    
    .success-stories-header {
        margin-bottom: 50px;
    }
    
    .success-stories-title {
        font-size: 36px;
    }
    
    .success-stories-subtitle {
        font-size: 16px;
    }
    
    .success-story-item {
        margin-bottom: 50px;
    }
    
    .story-image {
        height: 350px;
        margin-bottom: 30px;
    }
    
    .story-content {
        padding: 30px 20px;
    }
    
    .story-title {
        font-size: 24px;
    }
    
    .story-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .success-stories-section {
        padding: 40px 0;
    }
    
    .success-stories-header {
        margin-bottom: 40px;
    }
    
    .success-stories-title {
        font-size: 28px;
    }
    
    .success-stories-subtitle {
        font-size: 15px;
    }
    
    .success-story-item {
        margin-bottom: 40px;
    }
    
    .story-image {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .story-content {
        padding: 20px 15px;
    }
    
    .story-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .story-description {
        font-size: 15px;
    }
}

/* FAQ Section (Based on your image) */
.faq-section {
    background-color: white;
    padding: 120px 0 80px; /* Top padding to account for fixed navbar */
     flex: 1;
}

.faq-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: 42px;
    font-weight: normal; /* Matching the image style */
    color: #333;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Customizing Bootstrap Accordion to match image */
.custom-accordion .accordion-item {
    border: 1px solid #ced4da; /* Light grey border like image */
    margin-bottom: 20px; /* Space between items */
    border-radius: 6px !important; /* Rounded corners */
    overflow: hidden;
    background: white;
}

.custom-accordion .accordion-button {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    background-color: white;
    padding: 25px 30px;
    box-shadow: none; /* Remove default blue focus glow */
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #333;
    background-color: white; /* Keep white background when open */
    box-shadow: none;
    border-bottom: none; /* Seamless transition to body if needed */
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.custom-accordion .accordion-body {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    padding: 0 30px 25px 30px; /* Align with title */
}

/* Contact Section */
.contact-section {
    background-color: white;
    padding: 120px 0 80px; /* Top padding to account for fixed navbar */
}

.contact-header {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-title {
    font-size: 42px;
    font-weight: normal;
    color: #333;
    margin-bottom: 15px;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Contact Form & Info Section */
.contact-content-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-form-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
}

.form-control {
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #333;
}

.submit-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 20px;
    color: #333;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.contact-details p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-map {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 100px 0 60px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 15px;
    }
    
    .contact-card {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .contact-info-item {
        margin-bottom: 20px;
    }
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
    }
    
    .faq-subtitle {
        font-size: 15px;
    }
    
    .custom-accordion .accordion-button {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .custom-accordion .accordion-body {
        padding: 0 20px 20px 20px;
    }
}