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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFFBEB;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    line-height: 1.2;
    color: #1A202C;
}

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

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

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-name {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1A202C;
    text-decoration: none;
}

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

.page-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #1A202C;
}

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

.content-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1A202C;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 24px;
}

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

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

.about-hero-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.story-content,
.philosophy-content,
.landscape-content,
.forward-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-illustration,
.philosophy-illustration,
.forward-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.landscape-content {
    grid-template-columns: 1fr;
    gap: 24px;
}

.landscape-text {
    text-align: center;
}

/* Footer */
.footer {
    background-color: #1A202C;
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand-name {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.footer-description {
    color: #9CA3AF;
    font-size: 16px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

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

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

.footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .page-title {
        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: 30px;
    }
}