.cancellation-page {
    padding: 80px 0;
    background: #f8f9fa;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-one);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--color-two) 100%);
    border-radius: 2px;
}

.cancellation-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.withdrawal-section,
.effects-section,
.form-section {
    margin-bottom: 40px;
}

.withdrawal-section h2,
.effects-section h2,
.form-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-one);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    color: var(--color-three);
    line-height: 1.7;
    margin-bottom: 15px;
}

.highlight {
    background: #fff3cd;
    padding: 15px;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
    font-weight: 500;
}

.withdrawal-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.form-field {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.form-intro {
    font-style: italic;
    color: var(--color-three);
    margin-bottom: 25px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--color-three);
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cancellation-page {
        padding: 60px 0;
    }
    
    .cancellation-content {
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .withdrawal-form {
        padding: 20px;
    }
}