:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #343a40
}

body {
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6
}

.policy-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 4rem 0;
    margin-bottom: 2rem;
    text-align: center
}

.policy-header h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 1rem
}

.policy-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto
}

.last-updated {
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1)
}

.policy-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .1);
    padding: 2rem;
    margin-bottom: 3rem
}

.policy-section {
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem
}

.policy-section:last-child {
    border-bottom: none
}

.section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.section-title:hover {
    color: var(--secondary-color)
}

.section-content {
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: 5px;
    margin-top: 1rem
}

.highlight {
    background-color: #fff8e1;
    padding: 1rem;
    border-left: 4px solid #ffc107;
    margin: 1.5rem 0;
    border-radius: 0 5px 5px 0
}

.contact-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff
}

@media (max-width:768px) {
    .policy-header h1 {
        font-size: 2.2rem
    }

    .policy-header p {
        font-size: 1rem
    }

    .section-title {
        font-size: 1.2rem
    }
}