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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #264653;
    background-color: #fefefe;
}

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

/* Header */
.header {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(38, 70, 83, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo-brand a {
    text-decoration: none;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #264653;
    letter-spacing: -0.5px;
}

.nav-link {
    color: #264653;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #f8f9fa;
    color: #F4A261;
}

/* Page Hero */
.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #264653;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.alt {
    background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
}

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

.content-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: #264653;
    margin-bottom: 32px;
    text-align: center;
}

.content-block p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Legal Content */
.legal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(38, 70, 83, 0.1);
    text-align: left;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #264653;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* About Page Specific Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

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

.about-content.reverse .about-visual {
    order: -1;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(38, 70, 83, 0.1);
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #264653;
    margin-bottom: 24px;
    text-align: left;
}

.about-text p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

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

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

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

.footer-section a:hover {
    color: #F4A261;
}

.footer .brand-name {
    color: white;
    font-size: 20px;
}

.footer-section p {
    color: #adb5bd;
    line-height: 1.6;
    margin-top: 16px;
}

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

.footer-bottom p {
    color: #adb5bd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }
    
    .content-block h2 {
        font-size: 28px;
    }
    
    .content-block p {
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    .content-block h2 {
        font-size: 24px;
    }
    
    .legal-content p {
        margin-top: 100px;
    }
}