/* Reset and General Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

header nav .logo img {
    width: 150px;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
}

header nav ul li {
    margin-left: 30px;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
}

.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    header nav ul {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    #menu-toggle:checked + .menu-icon + .menu {
        display: flex;
    }
    
    .menu-icon {
        display: block;
    }
    
    header nav ul li {
        margin: 15px 0;
    }
}

/* Hero Section Styles */
.hero {
    background-color: #ffffff; /* White background */
    padding: 100px 20px; /* Padding for spacing */
    text-align: center; /* Center the text */
    color: #333333; /* Dark text color */
}

.hero .hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333333;
}

.hero .hero-text p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #555555;
}

.hero .btn {
    background-color: #ff4081; /* Button background color */
    color: #ffffff; /* Button text color */
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #e73370; /* Hover state color */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
    }
    
    .hero .hero-text h1 {
        font-size: 36px;
    }
    
    .hero .hero-text p {
        font-size: 20px;
    }
}


/* Sections */
section {
    padding: 80px 0;
    text-align: center;
}

section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

/* Steps Section */
.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step {
    width: 30%;
    margin-bottom: 20px;
}

.step .icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
}

@media (max-width: 768px) {
    .step {
        width: 100%;
        margin-bottom: 40px;
    }
}

/* Features Section */
.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature {
    width: 45%;
    margin-bottom: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
}

@media (max-width: 768px) {
    .feature {
        width: 100%;
    }
}

/* Testimonials Section */
.testimonials {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.testimonial {
    width: 30%;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    text-align: left;
}

.testimonial img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: 30px;
    border: 3px solid #fff;
}

.testimonial p {
    font-style: italic;
    margin: 40px 0 20px 0;
}

.testimonial h4 {
    font-size: 18px;
    color: #ff4081;
}

@media (max-width: 768px) {
    .testimonial {
        width: 100%;
    }
}

/* Contact Section */
#contact p {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

footer .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

footer p {
    font-size: 14px;
}

@media (max-width: 768px) {
    footer .footer-links {
        flex-direction: column;
    }
    
    footer .footer-links a {
        margin: 10px 0;
    }
}
