/* policies.css  */

.policies-wrapper {
    background-color: #f7f8fb;
    padding: 60px 20px;
    font-family: 'Outfit', sans-serif;
    min-height: calc(100vh - 200px);
}

.policies-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 60px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 35, 50, 0.05);
    color: #444;
    line-height: 1.8;
}

.policies-title {
    color: #1a1a2e;
    font-weight: 800;
    margin-bottom: 10px;
    font-size: clamp(2rem, 5vw, 2.75rem);
    text-align: center;
    letter-spacing: -0.02em;
}

.policies-subtitle {
    text-align: center;
    color: #8e99a9;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.policies-section-title {
    color: #1a1a2e;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 10px;
}

.policies-text {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #6b7b8d;
    line-height: 1.8;
}

.policies-list {
    margin-bottom: 25px;
    padding-left: 20px;
    color: #6b7b8d;
    font-size: 1.05rem;
}

.policies-list li {
    margin-bottom: 10px;
}

.policies-button-wrapper {
    text-align: center;
    margin-top: 60px;
}

.policies-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    padding: 14px 34px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.35);
}

.policies-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(255, 107, 107, 0.45);
    color: #ffffff;
}

@media (max-width: 768px) {
    .policies-wrapper {
        padding: 40px 15px;
    }
    .policies-container {
        padding: 30px 25px;
        border-radius: 16px;
    }
}
