/* Auxiliary Pages Styles */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a1f36;
    --light-navy: #2a3047;
    --teal: #00d4aa;
    --dark-teal: #00b896;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(26, 31, 54, 0.1);
    --shadow-lg: 0 10px 30px rgba(26, 31, 54, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

strong {
    color: var(--navy);
    font-weight: 600;
}

a {
    color: var(--teal);
    text-decoration: none;
}

a:hover {
    color: var(--dark-teal);
    text-decoration: underline;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
}

/* Main Content */
.main-content {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--navy);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 50px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.content-section h2 {
    margin-bottom: 20px;
    color: var(--navy);
    border-bottom: 2px solid var(--teal);
    padding-bottom: 10px;
}

.content-section h3 {
    margin: 30px 0 15px 0;
    color: var(--navy);
}

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

/* About Us Specific Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.team-member h4 {
    margin-bottom: 5px;
    color: var(--navy);
}

.team-member .role {
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--teal);
}

.value-item h4 {
    margin-bottom: 10px;
    color: var(--navy);
}

/* Legal Pages Specific Styles */
.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    margin-bottom: 15px;
    color: var(--navy);
}

.legal-section h4 {
    margin: 20px 0 10px 0;
    color: var(--dark-gray);
}

.effective-date {
    background-color: var(--light-gray);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid var(--teal);
}

.contact-info {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-info h4 {
    margin-bottom: 10px;
    color: var(--navy);
}

/* Footer */
.footer {
    background-color: var(--light-navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h5 {
    color: var(--teal);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: var(--teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

    .content-section div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center;
    }

    .content-section img {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-title {
        font-size: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }

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

    .main-content {
        padding: 100px 0 60px;
    }

    .team-member img {
        width: 60px !important;
        height: 60px !important;
    }
}