/* RESET & GENERAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #1f2937; /* Dark charcoal for excellent readability */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}



/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    display: flex;
    background: linear-gradient(135deg, #49baba, #2b8c8c);
    padding: 20px 0;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

.logo-icon {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}


/* HERO SECTION (Top Half) */
.hero-section {
    background: linear-gradient(135deg, #49baba, #2b8c8c); /* New Base Color Profile */
    padding: 100px 0 60px 0;
    color: #ffffff;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #ffffff;
    color: #2b8c8c;
}

.btn-primary:hover {
    background-color: #f0fdfa;
}

.link-secondary {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

.btn-teal {
    background-color: #49baba;
    color: #ffffff;
}

.btn-teal:hover {
    background-color: #2b8c8c;
}

/* FEATURES SECTION (Bottom Half) */
.features-section {
    background-color: #f2fbfb; /* Very light, soft tint of your base color */
    padding: 100px 0;
}

.features-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-direction: row-reverse; 
}

.features-content {
    flex: 1;
}

.features-content h2 {
    font-size: 36px;
    color: #2b8c8c;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li span {
    color: #49baba;
    font-weight: bold;
    font-size: 18px;
}

.features-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.features-image img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
}

/* APP DOWNLOAD BADGES */
.download-badges {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.badge-link img {
    height: 45px;
    width: auto;
    transition: transform 0.2s;
}

.badge-link img:hover {
    transform: scale(1.05);
}

/* FOOTER */
.footer {
    background-color: #2b8c8c;
    color: #ffffff;
    padding: 30px 0;
    font-size: 14px;
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    margin-left: 15px;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}


/* RESPONSIVE DESIGN (For mobile screens) */
@media (max-width: 768px) {
    .navbar {
        position: relative;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nav-links a {
        margin-left: 0;
    }

    .hero-container, .features-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons, .download-badges {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .features-list li {
        justify-content: center;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}