.cta-section {
    max-width: 1200px;
    margin: 50px auto;
    background: #132D55; /* Dark background to match previous sections */
    border-radius: 15px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

/* Add a subtle overlay pattern for visual interest */
.cta-section::before {
    content: '';

    top: 0;
    left: 0;
  
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.2;
}

.cta-content {
    max-width: 60%;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #28608f; /* Brand red color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: #28608f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-image {
    max-width: 35%;
}

.cta-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cta-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
        padding: 24px 12px;
        margin: 10px;
    }

    .cta-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .cta-image {
        max-width: 80%;
    }
}