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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D2D2D;
    background-color: #FAFAFA;
}

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

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

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

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

/* Logo and Branding */
.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #727272;
}

.logo-svg {
    flex-shrink: 0;
}

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

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

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

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

.placeholder-content {
    background: #F9FAFB;
    border: 2px dashed #D1D5DB;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    color: #6B7280;
}

.placeholder-content p {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

/* About Page Specific Styles */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.content-side h2 {
    margin-bottom: 1.5rem;
}

.image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
}

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

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2D2D2D;
}

.value-item p {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
}

/* Footer */
.footer {
    background: #2D2D2D;
    color: white;
    padding: 60px 0 40px 0;
}

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

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

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #4A5D3A;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .main {
        padding: 60px 0;
    }
    
    .content-section {
        margin-bottom: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .placeholder-content {
        padding: 40px 24px;
    }
}