/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #036308, #108505);
    color: white;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: #f8f9fa;
}

.content-section.reverse {
    background: #ffffff;
}

.content {
    display: flex;
    max-width: 1000px;
    gap: 40px;
    align-items: center;
}

.content img {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.text {
    width: 50%;
}

.text h2 {
    font-size: 2rem;
    color: #135ac5;
    margin-bottom: 15px;
}

.text p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: #03701b;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-highlight {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid white; /* White border */
    color: white; /* White text */
    background-color: transparent !important; /* Ensure no background */
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.btn-highlight:hover {
    background-color: white !important; /* White background on hover */
    color: black !important; /* Black text on hover */
}


