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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1f3a;
    background-color: #ffffff;
}

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

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

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1f3a;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1f3a;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1f3a;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

li {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

a {
    color: #ff7f39;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Brand and Logo */
.brand {
    display: flex;
    align-items: center;
}

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

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

.logo {
    flex-shrink: 0;
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover, .nav a.active {
    color: #ff7f39;
}

.contact-btn {
    background: #ff7f39 !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #e6723a !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
    margin-top: 1rem;
}

/* Main Content */
.main-content {
    padding: 5rem 0;
}

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

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    margin-bottom: 2rem;
    color: #1a1f3a;
}

.policy-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #374151;
    font-size: 1.2rem;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-section ul {
    margin: 2rem 0;
}

.policy-section li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.contact-details {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-details p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-details strong {
    color: #1a1f3a;
}

.policy-content em {
    color: #9ca3af;
    font-style: italic;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background: #f8fafc;
}

.mission h2 {
    margin-bottom: 3rem;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.mission-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Story Section */
.story {
    padding: 5rem 0;
}

.story h2 {
    margin-bottom: 3rem;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.story-image {
    width: 100%;
    max-width: 350px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Approach Section */
.approach {
    padding: 5rem 0;
    background: #f8fafc;
}

.approach h2 {
    margin-bottom: 3rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.approach-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    margin-bottom: 2rem;
    display: flex;
}

.approach-item h3 {
    margin-bottom: 1.5rem;
    color: #1a1f3a;
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: #f8fafc;
}

.values h2 {
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 2rem;
    display: flex;
}

.value-item h3 {
    margin-bottom: 1.5rem;
    color: #1a1f3a;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-brand p {
    color: #9ca3af;
    margin-top: 1rem;
}

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

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

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

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

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

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-image, .story-image {
        max-width: 100%;
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach-item {
        padding: 2rem;
    }
    
    .value-item {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}