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

:root {
    --ice-blue: #4A90A4;
    --pine-green: #5B8C5A;
    --charcoal: #3D3D3D;
    --light-gray: #F5F7F9;
    --white: #FFFFFF;
    --text-primary: #2C3E50;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Header */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

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

.logo-icon {
    display: block;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.brand-name:hover {
    color: var(--ice-blue);
}

/* Main Content */
.page-main {
    flex: 1;
    padding: 80px 0;
}

.page-header {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: -1px;
}

.page-intro {
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 48px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.last-updated {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 32px;
}

.content-section strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 64px 0 32px;
    margin-top: auto;
}

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

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand .logo-icon rect,
.footer-brand .logo-icon path,
.footer-brand .logo-icon circle {
    stroke: var(--ice-blue);
    fill: var(--ice-blue);
}

.footer-brand .logo-icon circle {
    fill: var(--pine-green);
}

.footer-tagline {
    margin-top: 16px;
    color: #9CA3AF;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #4B5563;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9CA3AF;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
}

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

    .page-header {
        margin-bottom: 48px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .content-section p {
        font-size: 16px;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* About Page Specific Styles */
.about-section {
    margin-bottom: 80px;
}

.about-section:last-of-type {
    margin-bottom: 0;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.about-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

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

.illustration {
    max-width: 100%;
    height: auto;
}

.about-photo-section {
    text-align: center;
}

.photo-placeholder {
    width: 100%;
    max-width: 900px;
    height: 400px;
    background: linear-gradient(135deg, var(--ice-blue) 0%, var(--pine-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin: 32px auto;
}

.about-text-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-text-centered p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-values {
    text-align: center;
}

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

.value-item {
    text-align: center;
}

.value-icon {
    margin-bottom: 24px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.about-cta-section {
    text-align: center;
    background-color: var(--light-gray);
    padding: 64px 48px;
    border-radius: 12px;
}

.about-cta-section h2 {
    margin-bottom: 16px;
}

.about-cta-section > p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 32px;
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--ice-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #3A7A8D;
}

.btn-secondary {
    background-color: transparent;
    color: var(--ice-blue);
    border: 2px solid var(--ice-blue);
}

.btn-secondary:hover {
    background-color: var(--ice-blue);
    color: var(--white);
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photo-placeholder {
        height: 280px;
        font-size: 18px;
    }

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

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-section {
        margin-bottom: 60px;
    }

    .about-section h2 {
        font-size: 28px;
    }
}
