@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

.shr-cta-section {
    background-color: #0A2540; /* Navy Blue */
    padding: 80px 20px;
    font-family: 'DM Sans', sans-serif;
    color: #ffffff;
    text-align: center;
}

.shr-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.shr-cta-title {
    font-family: Georgia, serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    margin: 0 0 16px;
    color: #ffffff;
}

.shr-cta-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #e6ebf0; /* Adjusted light navy tint for text */
    margin: 0 0 40px;
}

.shr-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.shr-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.shr-btn-cta i {
    font-size: 22px;
}

.shr-btn-cta-primary {
    background-color: #ffffff;
    color: #0A2540 !important; /* Navy Blue text */
    border: 2px solid #ffffff;
}

.shr-btn-cta-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.shr-btn-cta-outline {
    background-color: transparent;
    color: #ffffff !important;
    border: 2px solid #ffffff;
}

.shr-btn-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .shr-cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .shr-btn-cta {
        width: 100%;
    }
}
