/* Full-width Call to Action Section */
.cta-section {
    width: 100%;
    background-color: #007bff;  /* Background color */
    color: #fff;                /* Text color */
    padding: 50px 20px;         /* Padding around the content */
    display: flex;
    justify-content: center;    /* Center content horizontally */
    align-items: center;        /* Center content vertically */
    text-align: center;         /* Center text inside the div */
}

.cta-content {
    max-width: 800px;           /* Max width for the content */
}

.cta-content h2 {
    font-size: 2.5rem;           /* Font size for the heading */
    margin-bottom: 20px;         /* Margin below the heading */
		color: #fff;                /* Text color */
}

.cta-content p {
    font-size: 1.2rem;           /* Font size for the paragraph */
    margin-bottom: 30px;         /* Margin below the paragraph */
}

.cta-button {
    background-color: #fff;      /* Button background color */
    color: #007bff;              /* Button text color */
    padding: 15px 30px;          /* Button padding */
    font-size: 1.1rem;           /* Button font size */
    text-decoration: none;       /* Remove underline from button */
    border-radius: 5px;          /* Rounded corners */
    transition: background-color 0.3s, color 0.3s; /* Transition for hover effect */
}

.cta-button:hover {
    background-color: #0056b3;   /* Change button background on hover */
    color: #fff;                 /* Change button text color on hover */
}