/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #003366, #004B87);
    padding: 60px 20px;
    color: white;
    text-align: center;
}


.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #FF8C00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}
