* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #4a4a4a;
    background-color: #f9f9f9;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
}


        /* Header */
header {
    background-color: #f2f2f2;
    padding: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo-container {
    text-align: center;
}

.logo {
    max-width: 400px;
    height: auto;
}



        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-background.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 4rem 0;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

        .cta-button {
            display: inline-block;
            background-color: #3FA846;
            color: #fff;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s, transform 0.3s;
        }

        .cta-button:hover {
            background-color: #358a3e;
            transform: translateY(-2px);
        }

        .highlight {
            color: #3FA846;
            font-weight: 400;
        }

        /* Main Content */
main {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 4rem;
}

/* About Us Section */
.about-section {
    background-color: #fff;
    padding: 5rem 0;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: #666;
}


        /* Widget Container */
        .widget-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            min-height: 400px;
        }

        /* Footer */
footer {
    background-color: #f2f2f2;
    color: #4a4a4a;
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-column p {
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-column a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3FA846;
}

.footer-column i {
    margin-right: 0.5rem;
    color: #3FA846;
}

.footer-logo img {
    max-width: 250px;
    margin-bottom: 1rem;
}





        .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    font-weight: 300;
    color: #888;
}


        /* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    main, .about-section {
        padding: 3rem 0;
    }

    .logo {
        max-width: 250px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }
}

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }