body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background: url('bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background: #28a745;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #218838;
}

/* Ensure the logo scales responsively */
.logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px; /* Optional: centers the logo and adds spacing below */
}


.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    background: #fff;
    flex-wrap: wrap;
}

.feature {
    max-width: 300px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background: #f9f9f9;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about, .contact {
    padding: 50px;
    text-align: center;
    background: #fff;
}

.about h2, .contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

footer p {
    margin: 5px 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        max-width: 90%;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    header {
        padding: 50px 0;
    }

    .about, .contact {
        padding: 30px;
    }

    .about h2, .contact h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .feature h3 {
        font-size: 1.2rem;
    }

    footer {
        font-size: 0.8rem;
    }
}