/* Auxiliary Pages Styles */
/* Reset and Base Styles (copied from main.css for independence) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: #2D4A4A;
    background-color: #FFFFFF;
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2D4A4A;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    color: #2D4A4A;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #2D4A4A;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #4A5568;
    margin-bottom: 1rem;
}

/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid #E8D5B7;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D4A4A;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    min-height: 60vh;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section p {
    max-width: 800px;
}

.content-section ul {
    max-width: 800px;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #4A5568;
}

/* About Us Specific */
.about-intro {
    background-color: #F7F9FA;
    padding: 4rem 0;
    margin-bottom: 3rem;
    border-radius: 12px;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-content h1 {
    margin-bottom: 1.5rem;
}

.about-hero-visual {
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.mission-visual {
    display: flex;
    justify-content: center;
}

.approach-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.approach-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D4A4A;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #4A5568;
    font-weight: 500;
}

.approach-image {
    display: flex;
    justify-content: center;
}

.values-section {
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    color: #2D4A4A;
    margin-bottom: 1rem;
}

.team-section {
    text-align: center;
}

.team-visual {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

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

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Legal Pages */
.legal-notice {
    background-color: #E8F4F8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2D4A4A;
}

.legal-notice p {
    margin-bottom: 0;
    font-style: italic;
    color: #2D4A4A;
}

/* Footer */
.footer {
    background-color: #2D4A4A;
    color: white;
    padding: 60px 0 20px 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .brand-name {
    color: white;
}

.footer-description {
    color: #B8C5C5;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #E8D5B7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    color: #B8C5C5;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #3A5A5A;
    padding-top: 2rem;
    text-align: center;
    color: #B8C5C5;
}

/* Page Layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-navigation {
        grid-template-columns: 1fr;
    }

    .about-intro {
        padding: 2rem 0;
    }

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

    .about-hero,
    .mission-section,
    .approach-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .about-image {
        height: 250px;
    }
}