body {
    background-color: #fefcfa;
}

html,
body {
    height: 100%;
    margin: 0;
}

.page-wrapper {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* ============================= */
/* CANCELLATION POLICY */
/* ============================= */
.policy-section {
    padding: 50px 8%;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.policy-subtitle {
    display: inline-block;
    color: #1b9c91;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.policy-card h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: #14365a;
    margin-bottom: 25px;
    font-family: 'Times New Roman', Times, serif;
}

.policy-card p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 24px;
}

.deposit-box {
    background: #f1f7ef;
    border-left: 5px solid #1f5a33;
    padding: 28px;
    border-radius: 18px;
    margin: 35px 0;
}

.deposit-box h2 {
    color: #1f5a33;
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-family: 'Times New Roman', Times, serif;
}

.deposit-box p {
    margin-bottom: 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.policy-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}

.policy-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1b9c91;
    font-weight: 700;
}

.policy-thankyou {
    background: #f8f6f2;
    padding: 25px;
    border-radius: 18px;
}

.policy-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.policy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;
    border-radius: 999px;

    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.policy-btn.primary {
    background: #1BA39C;
    color: #ffffff;
}

.policy-btn.primary:hover {
    background: #1ba39cd4;
    transform: translateY(-3px);
}

.policy-btn.secondary {
    background: #ffffff;
    color: #1BA39C;
    border: 2px solid #1BA39C;
}

.policy-btn.secondary:hover {
    background: #1BA39C;
    color: #ffffff;
    transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 700px) {
    .policy-section {
        padding: 60px 6%;
    }

    .policy-card {
        padding: 35px 25px;
    }

    .policy-buttons {
        flex-direction: column;
    }

    .policy-btn {
        width: 100%;
    }
}