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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

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

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

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

.btn {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background: #e65c00;
}

/* About Section */
.about {
    background: #fff;
    text-align: center;
    padding: 60px 20px;
}

.about h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.feature-item {
    width: 45%;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin: 10px 0;
    text-align: center;
}

/* Process Section */
.process {
    background: #fff;
    text-align: center;
    padding: 60px 20px;
}

.process-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.process-item {
    width: 30%;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
}

.process-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Benefits Section */
.benefits {
    background: #f8f9fa;
    text-align: center;
    padding: 60px 20px;
}

.benefit-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.benefit-item {
    width: 45%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 10px 0;
}

/* 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;
}
