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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h1 {
    line-height: 1.2;
}
/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: #f4f4f4;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
}

.app-store-btn img {
    width: 150px;
}

.nav-link-button {
    line-height: 0;
}

.app-store-btn-sm  {
    width: 100px;
    line-height: 0;
}

.app-store-btn-sm img {
    width: 100px;
}

/* Content Sections */
.content-section {
    padding: 40px 20px;
}

.row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.text {
    flex: 1;
    padding: 20px;
}

.image {
    flex: 1;
}

.image img {
    width: 100%;
    height: auto;
}

.reverse {
    flex-direction: row-reverse;
}

/* Subscribe Banner */
.subscribe-banner {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.subscribe-banner h2 {
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    justify-content: center;
}

.subscribe-form input[type="email"] {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.subscribe-form button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #f04;
    color: white;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

/* Footer */
footer {
    padding: 40px 20px;
    background-color: #333;
    color: white;
    text-align: left;
}

.footer-content p {
    margin-bottom: 10px;
}

.footer-content .brand {

}

.social-links {
    display: flex;
}

.social-links a {
    
    flex-direction: row;
    margin-bottom: 5px;
    color: white;
    text-decoration: none;
}

.social-links i {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        display: none;
        background-color: #333;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 20px
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-toggle:checked + .nav-toggle-label + .nav-links {
        display: flex;
    }

    .nav-toggle-label {
        display: block;
        cursor: pointer;
    }

    .nav-toggle-label span {
        display: block;
        background: white;
        height: 3px;
        width: 30px;
        margin: 5px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-left, .hero-right {
        flex: unset;
    }



    .row {
        flex-direction: column;
    }
}
