.cta-section {
    background-image: url('./background.jpg'); /* Replace with the actual path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fafafa;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 15px;
}

/* Rest of the CSS remains the same */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    z-index: 1;
}

.cta-content {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #e5af68;
    color: #7b3130;
    font-size: 1.2rem;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #ce8644;
    transform: scale(1.05);
}


/* Primary Button Styling */
.btn-primary {
    background-color: #f3ecea;
    color: #7b3130;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none; /* Remove underline for button link */
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #a67e7e; /* Lighter shade on hover */
    color: #fafafa;
}

.spacer {
    height: 100px; /* Adjust the height as needed */
}

@media (min-width: 768px) {
    .cta-section {
        background-image: url('./background2.jpg');
    }
}