* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #f3f4f6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 1rem 2rem;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6347;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

.subscribe-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #fff;
}

.container {
    text-align: center;
    background: #333;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.container h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.container p {
    color: #aaa;
    margin-bottom: 2rem;
}

.subscribe-form {
    display: flex;
    justify-content: center;
}

.subscribe-form input {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.subscribe-form button {
    padding: 0.5rem 1rem;
    border: none;
    background: #ff6347;
    color: #fff;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background: #e55337;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-links li {
        text-align: center;
        margin: 1rem 0;
    }

    .burger {
        display: block;
    }
}
