.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #f39c12;
}

.search-bar input {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.footer {
    padding: 20px;
    background-color: #111;
    text-align: center;
}

.footer-links, .social-media, .subscription {
    margin-bottom: 20px;
}

.footer-links a, .social-media a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover, .social-media a:hover {
    color: #f39c12;
}

.subscription form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subscription input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 200px;
}

.subscription button {
    padding: 10px 20px;
    border: none;
    background-color: #f39c12;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscription button:hover {
    background-color: #e67e22;
}

/* Responsive Design */
body, html {
    font-size: 16px; /* Base font size */
}

.nav ul {
    flex-direction: column;
    gap: 10px;
}

.search-bar input {
    width: 100%;
    margin-top: 10px;
}

.hero-content h1 {
    font-size: 2rem;
}

.hero-content p {
    font-size: 1.2rem;
}

.cta-button {
    padding: 10px 20px;
    font-size: 1rem;
}

@media (min-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .header {
        padding: 20px 50px;
    }

    .nav ul {
        flex-direction: row;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 15px
