/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h1, h2, h3 {
    color: #333;
}

/* Hero Section */
.hero {
    background: url('../img/cta-bg2.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    color: #009e60;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #cc5500;
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
    background: white;
}

.benefits h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.benefit-item {
    background: #ff6600;
    color: white;
    padding: 20px;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    font-size: 1.2rem;
}

/* Process Section */
.process {
    padding: 60px 0;
    background: #f8f8f8;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.step {
    background: white;
    padding: 20px;
    max-width: 250px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
}

.testimonial {
    background: #fff;
    padding: 20px;
    border-left: 5px solid #ff6600;
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

.testimonial strong {
    display: block;
    margin-top: 10px;
    color: #555;
}

/* Call to Action */
.cta {
    background: #0e1d34;
    color: white;
    padding: 60px 0;
}

.cta h2 {
    font-size: 2rem;
    color: white;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
