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

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2a2a2a;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 2000;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #f5f1eb;
    scroll-behavior: smooth;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 80px; /* Default header height */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: none;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.cookie-link {
    color: #FBB536;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

.cookie-link:hover {
    color: #ffffff;
}

.cookie-button {
    background: #FBB536;
    color: #2a2a2a;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-button:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cookie-content p {
        min-width: unset;
        font-size: 0.9rem;
    }
    
    .cookie-actions {
        justify-content: center;
        gap: 1rem;
    }
    
    .cookie-button {
        padding: 0.75rem 1.5rem;
    }
}

/* Header */
header {
    background: #f5f1eb;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
    overflow: visible;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 80px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: visible;
}

.logo-container {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo-container a {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-placeholder {
    height: 100%;
    background: transparent;
    padding: 10px 20px;
    border: 1px solid #FBB536;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 2rem;
}

.lang-button {
    background: transparent;
    border: none;
    color: #2a2a2a;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    opacity: 0.6;
}

.lang-button:hover {
    opacity: 1;
    color: #FBB536;
}

.lang-button.active {
    opacity: 1;
    color: #FBB536;
    font-weight: 600;
}

.lang-separator {
    color: #999;
    font-size: 0.9rem;
    user-select: none;
}

@media (max-width: 768px) {
    .language-switcher {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        margin-right: 0;
    }
    
    .lang-button {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }
}

/* Mobile Menu */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #f5f1eb;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        gap: 0;
        z-index: 1002;
        width: 100%;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    nav ul.mobile-menu-open {
        display: flex !important;
    }
    
    nav ul li {
        padding: 0;
        border-bottom: 1px solid #e8dfd2;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        width: 100%;
        color: #2a2a2a;
        padding: 1rem 1.5rem;
    }
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    visibility: hidden;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

nav a {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #FBB536;
}

/* CTA Section */
.cta-section {
    background: #f5f1eb;
    padding: 4rem 0;
    box-shadow: none;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 280px;
    min-height: 65px;
    background: #2a2a2a;
    color: #fff;
    border: none;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.95rem;
    line-height: 1.4;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: hidden;
}

.cta-button .default-text {
    display: inline-block;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.cta-button .hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    white-space: normal;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    pointer-events: none;
    width: 90%;
    text-align: center;
}

.cta-button:hover .default-text {
    opacity: 0;
    visibility: hidden;
}

.cta-button:hover .hover-text {
    opacity: 1;
    visibility: visible;
}

.cta-button:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

button.cta-button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

/* Hero Section */
.hero {
    background: #f5f1eb;
    padding: 6rem 0 2rem;
    text-align: center;
    margin-top: 0; /* Removed margin-top since body has padding-top */
    position: relative;
    overflow: hidden;
}

/* Background for hero with top_pink.png */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
    height: 130%;
    background-image: url('../images/top_pink.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content is above the background */
.hero .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero::before {
        width: 100%;
        height: 100%;
        background-size: 110%;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .hero::before {
        width: 100%;
        height: 100%;
        background-size: 100%;
        opacity: 1;
    }
}

.hero-logo {
    max-width: 900px;
    width: 100%;
    height: auto;
    margin: 0 auto 3rem;
    display: block;
}

.hero-logo-placeholder {
    background: transparent;
    width: 900px;
    max-width: 100%;
    height: 250px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    border: 2px dashed #FBB536;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2a2a2a;
    display: none; /* Hide if using logo */
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #333;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2a2a2a;
    text-align: center;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* About Section */
.about {
    background: #fff;
}

.about p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* What is SOGICE Button */
.sogice-info-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid #2a2a2a;
    color: #2a2a2a;
    font-size: 1.1rem;
    font-weight: 500;
    min-height: 55px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin-top: 2rem;
}

.sogice-info-button:hover {
    background: #2a2a2a;
    color: white;
    transform: translateY(-2px);
}

.sogice-button-container {
    text-align: center;
    margin-top: 2rem;
}

/* Mission Section */
.mission {
    text-align: center;
    background: #f5f1eb;
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mission-card {
    padding: 2.5rem 2rem;
    background: transparent;
    text-align: center;
    border: 2px solid #EF8FAE;
    transition: all 0.3s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.mission-card:hover {
    background: #EF8FAE;
    color: #f5f1eb;
}

.mission-card:hover h3,
.mission-card:hover p {
    color: #f5f1eb;
}

.mission-card h3 {
    color: #2a2a2a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.mission-card p {
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.3s;
}

/* How You Can Help Section */
.help {
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background for help section with help_orange.png */
.help::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/help_orange.png');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .help::before {
        width: 70%;
        opacity: 1;
        background-size: contain;
    }
}

@media (max-width: 480px) {
    .help::before {
        width: 80%;
        opacity: 1;
    }
}

.help-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.help-intro {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: left;
}

.help-item {
    background: #f5f1eb;
    padding: 2rem;
    border-left: 4px solid #FBB536;
    transition: all 0.3s;
}

.help-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.help-item h3 {
    color: #2a2a2a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.help-item p {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #2a2a2a;
    color: #2a2a2a;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.social-link i {
    font-size: 1.1rem;
}

.social-link:hover {
    background: #2a2a2a;
    color: #fff;
    transform: translateY(-2px);
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #FBB536;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    margin-top: 1rem;
}

.download-button i {
    font-size: 1rem;
}

.download-button:hover {
    background: #e57a9a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 143, 174, 0.3);
}

.help-thank-you {
    margin-top: 3rem;
    font-size: 1.1rem;
    color: #4a4a4a;
    font-style: italic;
}

/* Collaborators Section */
.collaborators {
    background: #f5f1eb;
}

.collab-list {
    list-style: none;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.collab-list li {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #e8dfd2;
    border-left: 4px solid #FBB536;
}

.collab-list strong {
    color: #2a2a2a;
}

/* Collaborators Logo Grid */
.collab-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-items: center;
}

.collab-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    transition: all 0.3s ease;
}

.collab-logo-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.collab-logo-item img {
    max-width: 270px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.collab-logo-item:hover img,
.collab-logo-item a:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .collab-logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2.5rem;
    }
    
    .collab-logo-item {
        height: 120px;
    }
    
    .collab-logo-item img {
        max-width: 210px;
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .collab-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .collab-logo-item {
        height: 100px;
    }
    
    .collab-logo-item img {
        max-width: 180px;
        max-height: 75px;
    }
}

/* Support Section */
.support {
    text-align: center;
    background: linear-gradient(135deg, #FBB536 0%, #e57a9a 100%);
    color: white;
    padding: 2.5rem 0;
}

.support h2 {
    color: white;
}

.support p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.support p:last-child {
    margin-bottom: 0;
}

.support strong {
    color: white;
}

/* Footer */
footer {
    background: #2a2a2a;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    opacity: 0.8;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
    transition: color 0.3s;
}

footer a:hover {
    color: #FBB536;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1003;
    position: relative;
    width: 40px;
    height: 40px;
}

.mobile-menu-button span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2a2a2a;
    margin: 5px auto;
    transition: all 0.3s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f5f1eb;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #2a2a2a;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #2a2a2a;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #FBB536;
    transform: rotate(90deg);
}

.modal-content h2 {
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.modal-content h3 {
    color: #2a2a2a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-content p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-content ul {
    color: #4a4a4a;
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 2rem;
}

.modal-content ul li {
    margin-bottom: 0.5rem;
}

.modal-content strong {
    color: #2a2a2a;
}

.contact-email {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid #2a2a2a;
    margin: 2rem 0;
}

.email-container {
    color: #FBB536;
    font-weight: 500;
}

.email-container a {
    color: inherit;
    text-decoration: none;
}

.email-container:hover a {
    text-decoration: underline;
}

/* Privacy Modal Specific Styles */
#privacy-modal .modal-content {
    max-width: 700px;
    width: 95%;
}

/* SOGICE Modal Specific Styles */
#sogice-modal .modal-overlay {
    background: rgba(245, 241, 235, 0.95);
    backdrop-filter: blur(5px);
}

#sogice-modal .modal-content {
    max-width: 900px;
    width: 95%;
    position: relative;
    background: rgba(245, 241, 235, 0.95);
    backdrop-filter: blur(5px);
    border: 2px solid #2a2a2a;
}

#sogice-modal .modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    background-image: url('../images/top_pink.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

/* Blur effect when modal is open */
.modal-open > *:not(.modal) {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
    
    nav ul {
        display: none;
        transition: all 0.3s ease;
    }
    
    nav ul.mobile-menu-open {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-logo {
        max-width: 90%;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .cta-button {
        width: 90%;
        max-width: 350px;
        min-width: unset;
        min-height: 65px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .help-intro {
        font-size: 1.25rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 80%;
        max-width: 300px;
        justify-content: center;
    }
    
    .about p {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .modal-content {
        padding: 2rem;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .sogice-info-button {
        padding: 0.9rem 2.5rem;
    }

    #sogice-modal .modal-content::before {
        width: 90%;
        height: 90%;
    }
    
    #privacy-modal .modal-content {
        width: 95%;
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 95%;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .mission-card {
        padding: 1.5rem 1.5rem;
    }
    
    .cta-button {
        width: 95%;
        font-size: 0.9rem;
        min-width: unset;
        min-height: 65px;
    }
    
    .support p {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
}