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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background: #004d40;
    min-height: 100vh;
}

/* Disclaimer Page Styles */
.disclaimer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.disclaimer-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    padding: 40px;
    text-align: center;
}

.logo h1 {
    color: #004d40;
    font-size: 2.5em;
    margin-bottom: 5px;
    font-weight: bold;
}

.tagline {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.disclaimer-text h2 {
    color: #d32f2f;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.disclaimer-body {
    text-align: left;
    margin-bottom: 30px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 5px;
    border-left: 4px solid #004d40;
}

.disclaimer-body p {
    margin-bottom: 15px;
}

.disclaimer-body ul {
    margin: 15px 0 15px 20px;
}

.disclaimer-body li {
    margin-bottom: 8px;
}

.disclaimer-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.accept-btn, .decline-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.accept-btn {
    background: #4caf50;
    color: white;
}

.accept-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.decline-btn {
    background: #f44336;
    color: white;
}

.decline-btn:hover {
    background: #da190b;
    transform: translateY(-2px);
}

/* Main Website Styles */
.hidden {
    display: none !important;
}

.main-site {
    display: none;
}

.main-site.show {
    display: block;
}

/* Header Styles */
header {
    background: #004d40;
    color: white;
    padding: 30px 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    position: relative;
}

.header-logo {
    flex: 1;
    text-align: center;
}

.header-logo h1 {
    font-size: 3em;
    margin-bottom: 8px;
}

.hamburger-menu {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

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

/* Navigation Styles */
nav {
    position: fixed;
    top: 120px;
    right: 0;
    width: 300px;
    background: #004d40;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 20px;
    height: calc(100vh - 120px);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

nav.nav-open {
    transform: translateX(0);
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: stretch;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #ffd700;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: static;
    background: rgba(255, 255, 255, 0.1);
    min-width: auto;
    box-shadow: none;
    z-index: 1000;
    border-radius: 5px;
    margin-top: 10px;
    margin-left: 20px;
}

.dropdown-content a {
    color: white !important;
    padding: 12px 16px;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dropdown.open .dropdown-content {
    display: block;
}

.dropdown-arrow {
    margin-left: 8px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Overlay background when menu is open */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.nav-overlay.show {
    display: block;
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: calc(100vh - 200px);
}

.page-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.page-section h1 {
    color: #004d40;
    margin-bottom: 20px;
    font-size: 2.5em;
    text-align: center;
}

.page-section h2 {
    color: #004d40;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.page-section p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Team Section Styles */
.team-member-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 5px solid #004d40;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.team-member-card.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #d32f2f;
    margin-bottom: 40px;
}

.member-info h2 {
    color: #004d40;
    margin-bottom: 8px;
    font-size: 1.8em;
}

.member-info h3 {
    color: #004d40;
    margin-bottom: 8px;
    font-size: 1.4em;
}

.member-info .title {
    color: #004d40;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.member-info .experience {
    background: #004d40;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 15px;
}

.member-info .description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1em;
}

.contact-info {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.contact-info a {
    color: #004d40;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Support Team Styles */
.support-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.support-member:hover {
    border-color: #004d40;
}

.support-member h4 {
    color: #004d40;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.support-member .support-title {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.support-member a {
    color: #004d40;
    text-decoration: none;
    font-size: 0.9em;
}

.support-member a:hover {
    text-decoration: underline;
}

/* Office Cards Styling */
.office-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #004d40;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 77, 64, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #004d40;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 77, 64, 0.25);
    border-color: #004d40;
}

.office-card h3 {
    color: #004d40;
    margin-bottom: 15px;
    font-size: 1.4em;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

.office-card strong {
    color: #004d40;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 30px auto 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #004d40;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #004d40;
    outline: none;
}

.submit-btn {
    background: #004d40;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #004d40;
}

/* FAQ Styles */
.faq-panel {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-panel-header {
    background: #004d40;
    color: white;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-panel-header:hover {
    background: #004d40;
}

.faq-panel-header h2 {
    color: white;
}

.faq-panel-header h2 {
    margin: 0;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.panel-arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.faq-panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-panel.open .faq-panel-content {
    max-height: 2000px;
    padding: 0;
}

.faq-item {
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    overflow: hidden;
}

.faq-panel-content .faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #eee;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    color: #004d40;
    font-size: 1.1em;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #004d40;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation adjustments */
    nav {
        width: 100%;
        left: 0;
        right: 0;
        top: 70px;
        height: calc(100vh - 70px);
        padding: 15px;
    }

    /* Header adjustments for mobile */
    .header-content {
        padding: 0 15px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .header-logo {
        flex: none;
        text-align: left;
        margin-right: auto;
    }

    .header-logo h1 {
        font-size: 1.5em;
        margin-bottom: 0;
    }

    .hamburger-menu {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        width: 25px;
        height: 20px;
    }

    /* Main content adjustments */
    main {
        padding: 20px 15px;
    }

    .page-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .page-section h1 {
        font-size: 1.8em;
        margin-bottom: 15px;
        text-align: left;
    }

    .page-section h2 {
        font-size: 1.4em;
        margin-bottom: 12px;
    }

    .page-section p {
        font-size: 0.95em;
        margin-bottom: 12px;
    }

    /* Team section mobile adjustments */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    .team-member-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .member-info h2 {
        font-size: 1.4em;
        margin-bottom: 6px;
    }

    .member-info h3 {
        font-size: 1.2em;
        margin-bottom: 6px;
    }

    .member-info .title {
        font-size: 1em;
        margin-bottom: 10px;
    }

    .member-info .experience {
        font-size: 0.8em;
        padding: 6px 12px;
        margin-bottom: 10px;
    }

    .member-info .description {
        font-size: 0.9em;
        margin-bottom: 15px;
    }

    .contact-info {
        padding: 12px;
        font-size: 0.9em;
    }

    /* Support team grid mobile */
    .support-team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .support-member {
        padding: 20px 15px;
    }

    .support-member h4 {
        font-size: 1.1em;
        margin-bottom: 6px;
    }

    .support-member .support-title {
        font-size: 0.9em;
        margin-bottom: 12px;
    }

    .support-member a {
        font-size: 0.85em;
    }



    /* Contact form mobile adjustments */
    .contact-form {
        margin: 20px auto 0;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.95em;
        margin-bottom: 4px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    /* Office grid mobile layout */
    .office-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* FAQ mobile adjustments */
    .faq-panel-header {
        padding: 10px 15px;
    }

    .faq-panel-header h2 {
        font-size: 1em;
    }

    .panel-arrow {
        font-size: 0.7em;
    }

    .faq-question {
        padding: 8px 15px;
    }

    .faq-question h3 {
        font-size: 0.9em;
    }

    .faq-answer.show {
        padding: 10px 15px;
    }

    .faq-answer p {
        font-size: 0.9em;
    }

    /* Navigation dropdown mobile adjustments */
    nav ul {
        gap: 10px;
    }

    nav a {
        font-size: 0.95em;
        padding: 8px 0;
    }

    .dropdown-content a {
        padding: 10px 12px;
        font-size: 0.9em;
    }

    /* Footer mobile */
    footer {
        padding: 15px 0;
        font-size: 0.9em;
    }

    /* Disclaimer page mobile adjustments */
    .disclaimer-container {
        padding: 15px;
    }

    .disclaimer-content {
        padding: 25px 20px;
    }

    .logo h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .disclaimer-text h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .disclaimer-body {
        padding: 20px 15px;
        font-size: 0.9em;
    }

    .disclaimer-body p {
        margin-bottom: 12px;
    }

    .disclaimer-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .accept-btn, .decline-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 25px;
        font-size: 1em;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .header-logo h1 {
        font-size: 1.3em;
    }

    .page-section {
        padding: 15px 10px;
    }

    .page-section h1 {
        font-size: 1.6em;
    }

    .page-section h2 {
        font-size: 1.3em;
    }

    .team-member-card {
        padding: 15px 10px;
    }

    .member-info h2 {
        font-size: 1.3em;
    }

    .disclaimer-content {
        padding: 20px 15px;
    }

    .logo h1 {
        font-size: 1.8em;
    }
}