/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e0d0 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #b8a07a;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(184, 160, 122, 0.2);
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Policy Content */
.policy-content {
    margin-bottom: 40px;
}

.policy-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(184, 160, 122, 0.15);
    border: 1px solid rgba(184, 160, 122, 0.2);
    overflow: hidden;
}

/* Policy Sections */
.policy-section {
    padding: 32px;
    border-bottom: 1px solid rgba(184, 160, 122, 0.1);
    transition: all 0.3s ease;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section:hover {
    background: rgba(184, 160, 122, 0.02);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
}

.section-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #b8a07a 0%, #d4c4a8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(184, 160, 122, 0.3);
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #b8a07a;
    margin: 0;
}

.policy-section p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-left: 56px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px;
}

.footer-content {
    background: white;
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(184, 160, 122, 0.1);
    border: 1px solid rgba(184, 160, 122, 0.2);
}

.footer-content p {
    color: #666;
    margin-bottom: 8px;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

.footer-content strong {
    color: #b8a07a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .policy-section {
        padding: 24px 20px;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .policy-section p {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 20px 16px;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
    }
    
    .policy-section p {
        font-size: 0.95rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #b8a07a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a08f6a;
}

/* Animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-section {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover effects */
.policy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(184, 160, 122, 0.2);
    transition: all 0.3s ease;
}

.section-number:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
} 