/* === BASIC SETUP === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

/* === DESKTOP STYLES === */

/* --- Header & Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #282828;
}

.contact-btn {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #4356D6;
    padding: 14px 24px;
    border-radius: 8px;
}

/* --- Hero Section --- */
.hero-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.hero-text, .hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
}

.hero-text h1 {
    font-size: 65px;
    font-weight: 700;
    line-height: 85px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    margin-bottom: 15px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #4356D6;
    padding: 14px 24px;
    border-radius: 8px;
}

.btn-secondary {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #4356D6;
    padding: 14px 24px;
    border-radius: 8px;
    border: 1px solid #4356D6;
}

/* --- Why Section --- */
.why-section {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 0;
}

.why-image, .why-text {
    flex: 1;
}

.why-image img {
    max-width: 100%;
}

.why-text h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 70px;
    margin-bottom: 20px;
}

.why-text > p {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 18px;
    line-height: 32px;
}

/* === MOBILE MENU STYLES === */
.hamburger-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
}

.mobile-menu.show-menu {
    left: 0;
}

.backdrop-show {
    display: block !important;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu .close-icon {
    font-size: 40px;
    cursor: pointer;
}

.mobile-menu .mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-menu .mobile-nav-links li {
    margin-bottom: 25px;
}

.mobile-menu .mobile-nav-links a {
    text-decoration: none;
    color: #282828;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu .mobile-nav-links a img {
    width: 24px;
}

.mobile-contact-btn {
    display: block;
    text-align: center;
    margin-top: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #4356D6;
    padding: 14px 24px;
    border-radius: 8px;
}

/* --MOBILE RESPONSIVE STYLES --*/
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links, .contact-btn {
        display: none;
    }

    .hamburger-icon {
        display: block;
    }

    .hero-section, .why-section {
        flex-direction: column;
        text-align: center;
    }
    
    .why-features {
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image, .why-image {
        margin-top: 40px;
    }

    .hero-text h1 {
        font-size: 48px;
        line-height: 60px;
    }

    .why-text h2 {
        font-size: 36px;
        line-height: 50px;
    }
}