* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', 'Source Han Sans', 'Source Han Sans SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Section */
.header {
    position: relative;
    width: 100%;
    padding-bottom: 32.29166666666667%; /* 620/1920*100 */
    background-image: var(--header-bg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
}

/* Navigation Bar */
.navbar {
    position: absolute;
    top: 1rem;
    right: 2rem;
    z-index: 1000;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
}

/* Mobile Navigation Menu */


.header-top-left {
    position: absolute;
    top: 1rem;
    left: 4rem;
    z-index: 1000;
    color: white;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 60px;
    text-align: center;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header h1 {
    font-size: 2.6rem;
    letter-spacing: 0.5rem;
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin: 0;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
    white-space: normal;
}

/* Mobile Header */
@media (max-width: 768px) {
    .header {
        padding-bottom: 60%; /* Adjust aspect ratio for mobile */
        background-size: cover;
    }
    
    .header-top-left {
        left: 1rem;
        top: 0.5rem;
        font-size: 0.65rem;
        letter-spacing: 0.05rem;
    }
    
    .header h1 {
        font-size: 1.8rem;
        top: 50%;
        letter-spacing: 0.2rem;
        max-width: 90%;
        line-height: 1.3;
    }
    
    .navbar {
        top: 0.5rem;
        right: 1rem;
    }
}

/* Small Mobile Header */
@media (max-width: 480px) {
    .header {
        padding-bottom: 70%; /* Further adjust aspect ratio for small mobile */
    }
    
    .header h1 {
        font-size: 1.3rem;
        top: 50%;
        word-break: break-word;
        white-space: normal;
        width: 90%;
        line-height: 1.3;
        letter-spacing: 0.2rem;
        max-width: 90%;
    }
}

.header h2 {
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin: 0;
    font-weight: normal;
    opacity: 0.9;
    text-align: center;
}

.header p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.header-host,
.header-support {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 1rem;
}

.header-host {
    bottom: 4rem;
}

.header-support {
    bottom: 2rem;
}

/* Fixed QR Code Module */
.fixed-qr {
    position: fixed;
    bottom: 20px;
    right: 41px;
    z-index: 1000;
}

/* Mobile Fixed QR Code */
@media (max-width: 768px) {
    .fixed-qr {
        bottom: 10px;
        right: 10px;
    }
    
    .qr-container {
        width: 80px;
        height: 105px;
    }
    
    .qr-image {
        margin: 10px;
    }
    
    .qr-text {
        font-size: 0.7rem;
        margin: 5px 0 10px 0;
    }
}

.qr-container {
    width: 100px;
    height: 131px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.53);
    border-radius: 14px;
    background-color: #ffffff;
}

.qr-image {
    width: 100%;
    height: calc(100% - 25px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 15px 13px 0 13px;
}

.qr-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-text {
    font-size: 0.8rem;
    color: #000000;
    text-align: center;
    margin: 7px 0 13px 0;
    width: 100%;
}

/* Main Content */
.container {
    width: 100%;
}

.section {
    padding: 4rem 12rem 4rem 12rem;
    background-color: #ffffff;
}

.section1 {
    padding: 4rem 12rem 4rem 12rem;
    background-color: #F8F6F9;
}

/* Mobile Section Padding */
@media (max-width: 768px) {
    .section,
    .section1 {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .theme-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .theme-content h3 {
        font-size: 1.3rem;
    }
    
    .theme-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Mobile Table */
@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 1rem 0;
    }
    
    .info-table {
        min-width: 400px;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.8rem;
    color: #000000;
}

/* Activity Theme Section */
.theme-section {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: space-between;
}

.theme-image {
    flex: 0 0 300px;
    height: 537px;
    width: 350px;
    background-image: var(--theme-img);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-content {
    flex: 1;
}

.theme-content h3 {
    color: #12477C;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.section-number {
    font-size: 2rem;
    font-weight: normal;
}

.theme-content p {
    margin-bottom: 1.2rem;
    color: #000000;
    text-indent: 0;
    font-size: 1rem;
    line-height: 1.2;
}

/* Activity Content Section */
.content-section h3 {
    color: #12477C;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    text-align: center;
    font-weight: bold;
}

.content-section h4 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 3rem;
}

.content-section p {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 1rem;
}

.table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.info-table th,
.info-table td {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
    color: #000000;
    font-size: 1rem;
}

.info-table th {
    background-color: #12477C;
    color: white;
    font-weight: normal;
    font-size: 1rem;
}

/* Gallery Section */
.gallery-section {
    background-color: #ffffff;
    padding: 4rem 12rem 4rem 12rem;
}

/* Mobile Gallery Section */
@media (max-width: 768px) {
    .gallery-section {
        padding: 2rem 1rem;
    }
    
    .gallery-title {
        font-size: 1.3rem;
    }
    
    .gallery-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-grid-left {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
}

/* Small Mobile Gallery */
@media (max-width: 480px) {
    .gallery-grid-left {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
        border-radius: 8px;
    }
}

.gallery-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #12477C;
    font-size: 1.5rem;
    font-weight: bold;
}

.gallery-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #D5AC74;
    font-size: 0.9rem;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    gap: 1rem;
    width: 100%;
}

.gallery-grid-left {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
}

.gallery-item {
    aspect-ratio: 147/102;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

/* Gallery Item Hover Effects */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Gallery Item Effects */
@media (max-width: 768px) {
    .gallery-item {
        aspect-ratio: 1;
        width: 100%;
        height: auto;
    }
    
    .gallery-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Activity Flow Section */
.flow-section {
    position: relative;
    width: 100%;
    padding-bottom: 34%; /* 590/1920*100 */
    background-image: var(--flow-section-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #34373E;
    overflow: hidden;
}

.flow-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}

/* Mobile Flow Section */
@media (max-width: 768px) {
    .flow-section {
        padding-bottom: 120%; /* Adjust aspect ratio for mobile */
        background-size: cover;
    }
    
    .flow-container {
        padding: 2rem 1rem;
        justify-content: flex-start;
    }
    
    .flow-title {
        font-size: 1.3rem;
        margin-top: 0.5rem;
    }
    
    .flow-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .flow-cards {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .flow-card {
        width: 100%;
        max-width: 350px;
        padding: 1.5rem;
        min-height: auto;
    }
    
    .flow-card h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .flow-card p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
}

/* Small Mobile Flow Section */
@media (max-width: 480px) {
    .flow-section {
        padding-bottom: 150%; /* Further adjust aspect ratio for small mobile */
    }
    
    .flow-card {
        padding: 1.2rem;
    }
    
    .flow-card h4 {
        font-size: 0.85rem;
    }
    
    .flow-card p {
        font-size: 0.8rem;
    }
}

.flow-title {
    font-size: 1.5rem;
    /* margin-bottom: 0.5rem; */
    margin-top: 1rem;
    color: white;
    font-weight: bold;
    text-align: center;
}

.flow-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: #D5AC74;
    text-align: center;
}

.flow-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.flow-card {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 380px;
    min-height: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.flow-card h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #D5AC74;
    text-align: center;
    font-weight: normal;
}

.flow-card p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #000000;
    text-align: center;
    line-height: 1.6;
}

.flow-qr {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.flow-qr p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #34373E;
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-container {
    background-color: white;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile Contact Section */
@media (max-width: 768px) {
    .contact-container {
        padding: 1rem;
    }
    
    .contact-box {
        text-align: center;
        padding: 1rem;
        border-radius: 20px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-item {
        margin-top: 0.5rem;
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .flow-qr {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    
    .qr-code {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 1rem 0.5rem;
    }
    
    .contact-box {
        padding: 0.8rem;
        max-width: 250px;
    }
    
    .contact-item {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

.flow-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.contact-box {
    border: 1px solid #34373E;
    border-radius: 60px;
    padding: 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-item {
    font-size: 0.9rem;
    color: #34373E;
    margin: 0;
}

/* Footer Section */
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="300"><rect width="100%" height="100%" fill="%231a1a2e"/><path d="M0 0 Q300 100 600 0 T1200 100 L1200 300 L0 300 Z" fill="%2316213e"/><path d="M0 100 Q200 200 400 100 T800 200 T1200 100 L1200 300 L0 300 Z" fill="%230f3460"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-info {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem;
        background-size: cover;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-info {
        min-width: 100%;
    }
    
    .footer-info h3,
    .footer-info a {
        font-size: 0.8rem;
    }
    
    .footer-qr {
        width: 80px;
        height: 80px;
    }
}

/* Small Mobile Footer */
@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0.5rem;
    }
    
    .footer-info h3 {
        margin-bottom: 0.5rem;
    }
}

.footer-info h3 {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: white;
    font-weight: normal;
}

.footer-info a {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: white;
    font-weight: normal;
}

.footer-qr {
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 90%;
    max-height: 90%;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.close-modal:hover {
    color: #ccc;
}

.modal-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    text-align: center;
    z-index: 10001;
}

.modal-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Flow Section Responsive */
    .flow-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .flow-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-section {
        padding: 3rem 1rem;
        padding-bottom: 140%; /* Increased height for tablet to ensure all cards are visible */
    }
    
    .flow-card {
        width: 100%;
        max-width: 380px;
    }
    
    /* Flow Title and Subtitle Responsive */
    .flow-title {
        font-size: 1.3rem;
        width: 100%;
        word-break: break-word;
        white-space: normal;
    }
    
    .flow-subtitle {
        font-size: 0.8rem;
        width: 100%;
        word-break: break-word;
        white-space: normal;
    }
    
    /* Footer Responsive */
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-info {
        text-align: center;
    }
    /* Navigation Bar */
    .navbar {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
        z-index: 1000;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Navigation List - Mobile */
    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        gap: 0;
        max-width: 250px;
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-list.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item {
        flex: 1;
        min-width: auto;
        text-align: left;
        max-width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 1rem;
        display: block;
        background-color: transparent;
        border-radius: 0;
        transition: all 0.3s ease;
    }

    /* Header Top Left Text */
    .header-top-left {
        top: 0.5rem;
        left: 0.5rem;
        font-size: 0.6rem;
        letter-spacing: 0.05rem;
        max-width: 100%;
        word-break: break-word;
        white-space: normal;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }



    .header h2 {
        font-size: 1.2rem;
    }

    /* Sections */
    .section {
        padding: 2rem 1rem;
    }
    
    .section1 {
        padding: 2rem 1rem;
    }

    .theme-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .theme-image {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .info-table {
        font-size: 0.9rem;
    }

    .info-table th,
    .info-table td {
        padding: 0.6rem;
    }

    .header-support {
        font-size: 0.8rem;
        bottom: 1.5rem;
    }
}

/* Mobile Responsive Design (≤480px) */
@media (max-width: 480px) {
    /* Navigation Bar */
    .navbar {
        top: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
        padding: 0.3rem;
    }

    /* Mobile menu items should stack vertically */
    .nav-item {
        max-width: 100%;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.8rem;
        background-color: rgba(255, 255, 255, 0.1);
        min-width: auto;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    /* Header Top Left Text */
    .header-top-left {
        top: 0.3rem;
        left: 0.3rem;
        font-size: 0.5rem;
        letter-spacing: 0.05rem;
        max-width: 100%;
        word-break: break-word;
        white-space: normal;
    }
    


    .header h2 {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .theme-content h3 {
        font-size: 1.3rem;
    }

    .section-number {
        font-size: 1.8rem;
    }

    .theme-image {
        height: 200px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }
    
    .gallery-grid-left {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .gallery-item {
        aspect-ratio: 1;
        width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    
    .gallery-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .header-support {
        font-size: 0.7rem;
        bottom: 1rem;
        padding: 0 0.5rem;
        display: none;
    }
    
    .header-host {
        font-size: 0.7rem;
        bottom: 1.5rem;
        padding: 0 0.5rem;
        display: none;
    }
    
    .flow-section {
        padding-bottom: 180%; /* Adjust height for mobile */
    }
    
    .flow-container {
        padding: 1.5rem 0.5rem;
        box-sizing: border-box;
    }
    
    .flow-cards {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        align-items: stretch;
        gap: 1rem;
    }
    
    .flow-card {
        padding: 1rem;
        width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        min-height: auto;
    }
    
    .flow-card h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .flow-card p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    /* Flow Title and Subtitle Responsive for Mobile */
    .flow-title {
        font-size: 1.1rem;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .flow-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    /* Table styles for mobile */
    .table-container {
        overflow-x: auto;
        margin: 1rem 0;
        padding: 0.5rem;
    }
    
    .info-table {
        font-size: 0.8rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.5rem;
    }
    
    /* Modal styles for mobile */
    .modal-content {
        margin: 10% auto;
        max-width: 95%;
        max-height: 80%;
    }
    
    .close-modal {
        top: -30px;
        font-size: 30px;
    }
    
    /* Footer styles for mobile */
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-info h3,
    .footer-info a {
        font-size: 0.8rem;
    }
    
    /* Content section styles */
    .content-section h4 {
        font-size: 1rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .content-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

