body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
}

a {
    color: #e55a00;
}

a:hover, a:focus {
    color: #c95101;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: #75b675;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo span {
    font-family: 'Merriweather', serif;
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    font-family: 'Merriweather', serif;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    background-color: #f4f4f4;
    text-align: center;
    padding: 90px 0 50px;
    margin-top: 80px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    font-family: 'Merriweather', serif;
    display: inline-block;
    background: #fb7420;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
}

.btn:hover {
    background: #e55a00;
}

.features {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta {
    background: #75b675;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 30px;
        height: 30px;
        opacity: 0;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-icon {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        z-index: 1000;
    }

    nav {
        display: none;
        width: 100%;
    }

    .menu-toggle:checked ~ nav {
        display: block;
    }

    nav ul {
        flex-direction: column;
        margin-top: 60px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

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