/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Container to center all content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styles */
header {
    background-color: #4CAF50;
    padding: 20px 0;
    color: #fff;
}

header h1 {
    text-align: center;
    font-size: 2.5em;
    letter-spacing: 2px;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1.1em;
    text-transform: uppercase;
}

nav a:hover, .active {
    background-color: #008C45;
    border-radius: 5px;
}

nav .menu-toggle {
    display: none;
}

/* Footer styles */
footer {
    background-color: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #008C45;
}

/* Main content styles */
main {
    margin: 50px 0;
}

/* Responsive Styles for mobile */
@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        margin: 5px 0;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    nav.active .nav-links {
        display: flex;
    }
}

/* Hero Section */
.hero {
    background-color: #003366;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero .cta-btn {
    background-color: #008C45;
    color: #fff;
    padding: 15px 30px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
}

.hero .cta-btn:hover {
    background-color: #006d2c;
}

/* Product section */
.product-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-card h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.product-card p {
    font-size: 1.1em;
    color: #666;
}

/* Buttons and form styles */
button, input[type="submit"] {
    background-color: #008C45;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover {
    background-color: #006d2c;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin: 10px 0;
}

/* Card layout */
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card-container .product-card {
    flex: 1 1 30%;
    max-width: 30%;
    margin: 10px;
}

/* Testimonials */
.testimonial {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.testimonial h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
}

.testimonial .testimonial-item {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    margin: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
}

.faq-item h3 {
    font-size: 1.4em;
}

.faq-item p {
    font-size: 1.1em;
    color: #666;
}