/* Custom Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Hero Section */
.hero {
    background: #007bff;
    color: white;
    padding: 80px 0;
    border-radius: 10px;
}

    .hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
    }

    .hero p {
        font-size: 1.25rem;
    }

    .hero .btn {
        font-size: 1.1rem;
        padding: 12px 24px;
        border-radius: 30px;
    }

/* Features Section */
.features {
    padding: 50px 0;
}

.feature-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .feature-box h3 {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .feature-box p {
        color: #777;
    }

/* Call to Action Section */
.cta {
    background-color: #f8f9fa;
    padding: 60px 0;
}

    .cta h2 {
        font-size: 2.5rem;
        font-weight: 600;
    }

    .cta .btn {
        font-size: 1.2rem;
        padding: 12px 30px;
        border-radius: 50px;
    }

/* Media Queries for Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .features .col-md-4 {
        margin-bottom: 30px;
    }

    .cta h2 {
        font-size: 2rem;
    }
}
