/* 1. Global Reset & Base (Ensures consistent rendering) */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 2. Typography and Color Palette (Modern Look) */
:root {
    --color-primary: #1A73E8; /* Sleek Silicon Valley Blue for CTAs */
    --color-text: #333333;
    --color-background: #FFFFFF;
    --color-light-gray: #F4F5F7;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-stack);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

.container {
    width: 90%; /* Mobile priority */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Ensures space on edges */
}
/* 3. Header Styling */
.header {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-light-gray); /* Subtle separator */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 30px; /* Define logo size */
    width: auto;
}

/* Hide desktop navigation and show mobile toggle by default (Mobile-First) */
.navigation {
    display: none; 
}

.menu-toggle {
    /* Style your hamburger icon here */
    display: block; 
    border: none;
    background: none;
    cursor: pointer;
}
/* 4. Hero Section */
.hero {
    padding: 80px 0; /* Generous vertical spacing (whitespace) */
    text-align: center;
}

.hero h1 {
    font-size: 2.2rem; /* Mobile H1 size */
    margin-bottom: 15px;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}
/* 5. Call-to-Action Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px; /* Modern, slightly rounded corners */
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-background);
    border: 1px solid var(--color-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
/* 7. Responsive Stop (Laptop/Desktop) */
@media (min-width: 1024px) {
    /* Show the main navigation on desktop */
    .navigation {
        display: block; 
    }
    .menu-toggle {
        display: none; /* Hide the mobile toggle */
    }
    
    .navigation ul {
        list-style: none;
        display: flex; /* Display links horizontally */
    }
    
    .navigation li {
        margin-left: 30px;
    }

    .hero h1 {
        font-size: 3.5rem; /* Make the headline much bigger on desktop */
    }

    /* Example: Make features go side-by-side */
    .features .container {
        display: flex;
        gap: 30px;
    }
    .feature-item {
        flex: 1;
        padding: 20px;
        text-align: center;
    }
}