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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #4B5B8C;
    background-color: #F5F2E8;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #2C3E50;
}

h1 { 
    font-size: 2.5rem; 
    margin-bottom: 2rem;
}

h2 { 
    font-size: 2rem; 
    margin-bottom: 1.5rem;
    color: #D2766F;
}

h3 { 
    font-size: 1.5rem; 
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #F5F2E8 0%, #E8DCC6 100%);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(210, 118, 111, 0.2);
}

.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.brand-name {
    color: #4B5B8C;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.header-nav a {
    color: #4B5B8C;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: #D2766F;
    background-color: rgba(210, 118, 111, 0.1);
}

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

.main-content .container {
    max-width: 800px;
}

/* About Sections */
.about-section.centered {
    text-align: center;
}

.about-section {
    margin-bottom: 3rem;
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-section h2 {
    color: #4B5B8C;
    border-bottom: 2px solid #D2766F;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5A6B7D;
}

.about-content-with-image {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.about-content-with-image.reverse {
    flex-direction: row-reverse;
}

.about-content-with-svg {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-image {
    flex: 0 0 300px;
}

.about-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-svg {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #F5F2E8 0%, #E8DCC6 100%);
    border: 2px dashed #D2766F;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #4B5B8C;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 2.5rem;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: left;
}

.policy-section h2 {
    color: #4B5B8C;
    border-bottom: 2px solid #D2766F;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #5A6B7D;
    margin-bottom: 1rem;
}

.policy-footer {
    background: #F5F2E8;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.policy-footer p {
    margin: 0;
    color: #4B5B8C;
    font-weight: 600;
}

/* Content Placeholder */
.content-placeholder {
    background: #FFFFFF;
    padding: 4rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-placeholder p {
    font-size: 1.2rem;
    color: #9CA3AF;
}

/* Footer */
.footer {
    background-color: #4B5B8C;
    color: #F5F2E8;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column h4 {
    color: #F5F2E8;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-column a {
    color: #F5F2E8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #D2766F;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #F5F2E8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #D2766F;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 242, 232, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(245, 242, 232, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .header-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-content {
        padding: 3rem 0;
    }
    
    .about-section {
        padding: 2rem;
    }
    
    .content-placeholder {
        padding: 3rem 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content-with-image,
    .about-content-with-image.reverse,
    .about-content-with-svg {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-image {
        flex: none;
        width: 100%;
        max-width: 300px;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .about-section {
        padding: 1.5rem;
    }
    
    .content-placeholder {
        padding: 2rem 1.5rem;
    }
    
    .about-image {
        max-width: 250px;
    }
    
    .policy-section {
        padding: 1rem;
    }
}