* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0 40px 0 40px;
    background: #fff;
}

header .logo img, footer .logo img {
    height: 60px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

nav a.btn {
    padding: 10px 20px;
    background: #28a745;
    color: #fff;
    border-radius: 5px;
    text-decoration: none; /* Remove default link underline */
    transition: background-color 0.3s ease; /* Smooth transition effect */
}

nav a.btn:hover {
    background: #218838; /* Change background color on hover */
}

section {
    padding: 20px 20px;
    max-width: 1200px;
    margin: auto;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    padding: 60px;
    background: #fff;
    overflow: visible; /* Allow overflow */
    position: relative; /* Ensure position is relative for absolute positioning */
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    padding-top: 20px;
    font-size: 3em; /* Increase font size */
    font-weight: bold; /* Make it bolder */
    margin-bottom: 10px; /* Add space below */

}

.hero-content h2 {
    font-size: 2em; /* Increase font size */
    font-weight: bold; /* Make it bolder */
    margin-bottom: 20px; /* Add space below */
}

.hero-content p {
    margin: 20px 0;
}

.hero-content .btn {
    padding: 15px 30px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    display: inline-block; /* Ensure button behaves like a block element */
    text-decoration: none; /* Remove default link styling */
    transition: background-color 0.3s ease; /* Smooth transition effect */
    margin-bottom: 20px; /* Space between the button and stats */
}

.hero-content .btn:hover {
    background: #0056b3; /* Adjust hover background color */
}

.hero-image {
    max-width: 50%;
    position: relative; /* Ensure position is relative for image overflow */
    padding-right: 20px;
    right: -20px; /* Adjust this value as needed to extend image out of container */
}

.hero-image img {
    width: 110%;
    height: auto;
    border-radius: 10px;
}

.stats {
    display: flex;
    align-items: center;
    padding: 70px 50px; /* Adjust padding for spacing */
}

.stat {
    margin: 0 20px;
}

.vertical-line {
    width: 1px;
    height: 60px;
    background-color: #ccc;
}

.stat h2 {
    font-size: 2em;
    margin: 0;
}

.stat p {
    margin: 5px 0 0;
}

/* Call Section */
.call {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #fff;
}

.call-image {
    max-width: 50%;
}

.call-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Add rounded corners if desired */
}

.call-content {
    padding-left: 50px;
    max-width: 50%;
    margin-left: 20px;
}

.call-content h2 {
    font-size: 2.5em;
}

/* Adjusted button styling with margin */
.call-content .btn {
    padding: 15px 30px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    margin-top: 20px; /* Add space between the header and the button */
    display: inline-block; /* Ensure button behaves like a block element */
    text-decoration: none; /* Remove default link styling */
}

.call-content .btn:hover {
    background: #0056b3; /* Adjust hover background color */
}


.benefits {
    padding: 40px 20px;
    background: #fff;
}

.benefits-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 40px;
}

.benefits h2 {
    font-size: 2.5em;
    margin: 0 0 0 35px;
}

.benefits-image {
    width: 150px; /* Adjust size as needed */
    height: auto;
    margin-right: 60px;
    margin-bottom: 20px;
}

.benefits-content {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.benefits .benefit {
    flex: 1;
    margin: 0 20px;
    max-width: 300px; /* Adjust based on your layout preference */
}

.benefits .benefit .benefit-icon {
    width: 30%; /* Adjust icon size as needed */
    height: auto;
}

.benefits .benefit h3 {
    font-size: 1.5em;
    margin: 10px 0; /* Add margin to separate the icon and h3 */
}

.benefits .benefit p {
    font-size: 1em;
    margin-top: 10px;
}

.testimonials {
    padding: 40px 20px;
    background: #fff;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonials h2 {
    font-size: 2.5em;
    margin: 0 50px;
}

.testimonials-image {
    width: 150px; /* Adjust size as needed */
    height: auto;
    margin-left: 60px;
}

.testimonials-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.testimonial {
    flex: 1;
    margin: 0 20px;
    max-width: 300px;
    text-align: center; /* Adjust as needed */
}

.testimonials .testimonial .testimonial-icon {
    width: 100px; /* Adjust icon size as needed */
    height: 30px;
    margin-bottom: 10px;
}

.testimonial h3 {
    font-size: 1.5em;
    margin: 10px 0; /* Add margin to separate the icon and h3 */
}

.testimonial p {
    font-size: 1em;
    margin: 10px 0;
}

.how-it-works {
    padding: 40px 20px;
    background: #fff;
}

.how-it-works-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.how-it-works h2 {
    font-size: 2.5em;
    margin: 0 0 0 60px;
}

.how-it-works-icon {
    width: 150px; /* Adjust size as needed */
    height: auto;
    margin-right: 60px;
}

.how-it-works-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    font-size: large;
}

.how-it-works ul {
    list-style: none;
}

.how-it-works ul li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.how-it-works ul li::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 0;
    color: #007bff;
    font-weight: bold;
}

.join {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
}

.join-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
   
}

.join h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.join .btn {
    padding: 15px 30px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    width: fit-content; /* Ensure button does not stretch */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.contact {
    flex: 1;
    text-align: left;
    background: #eeeded;
    border-radius: 12px;
    padding: 20px 20px 20px 20px;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: left;
}

.contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    
}

.contact form label {
    margin: 20px 0 5px;
}

.contact form input,
.contact form textarea {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact form button {
    padding: 10px;
    background: #007bff; /* Blue background */
    color: #fff; /* White text color */
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.contact form button:hover {
    background: #0056b3; /* Darker blue on hover */
}

.join .btn:hover {
    background: #0056b3; /* Darker blue on hover */
}


footer {
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
    background: #fff;
}

.footer-section {
    flex: 1;
    text-align: center; /* Ensure the content inside each section is centered */
    padding: 0 10px; /* Optional: Add some padding to each section */
}

footer .additional-info,
footer .contact-info {
    flex: 1;
    text-align: left;
    margin-left: 50px;
    margin-top: 20px;
}

footer .contact-info {
   /* margin-right: -50px; */
    
    margin-right: -20px;
}

footer .social-stack, footer .social-media, footer .logo img, .copyright {
    flex: 1;
    text-align: center;
    margin-top: 10px;
}

footer .additional-info a,
footer .social-media a {
    margin: 0;
    text-decoration: none;
    color: #007bff;
}

footer .logo img {
    margin-top: 20px;
}

footer .copyright {
    margin-top: 50px;

}

.page-links {
    display: flex;
    flex-direction: column; /* Stack the links vertically */
    align-items: flex-start; /* Align links to the left */
    padding: 20px;
}

.page-links a {
    margin-bottom: 10px; /* Space between links */
    text-decoration: none; /* Remove underline from links */
    color: #007bff; /* Link color */
    font-size: 1em;
}

.page-links a:hover {
    text-decoration: underline; /* Add underline on hover */
}

.page-links .btn {
    background: #28a745; /* Background color for button */
    color: #fff; /* Text color for button */
    padding: 10px 20px; /* Padding for button */
    border-radius: 5px; /* Rounded corners for button */
    text-align: center; /* Center the text inside the button */
}

.page-links .btn:hover {
    background: #218838; /* Darker background on hover */
}

