.hero-section {
    background: linear-gradient(135deg, #0B1C2D 0%, #1e3a8a 100%);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

.content-section {
    padding: 60px 0;
}

.policy-section, .terms-section {
    margin-bottom: 3rem;
}

.policy-section h3, .terms-section h3 {
    color: #0B1C2D;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-section h4, .terms-section h4 {
    color: #FF7A18;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.last-updated {
    background: #F8FAFC;
    padding: 1rem;
    border-left: 4px solid #FF7A18;
    margin-bottom: 2rem;
}

.scrollable-content {
    max-height: 70vh;
    overflow-y: auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    max-width: 900px;
    margin: 0 auto;
}

.scrollable-content::-webkit-scrollbar {
    width: 8px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: #FF7A18;
    border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #e6691a;
}