/* --- Global Styles --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f8f8;
    line-height: 1.6;
    scroll-behavior: smooth; /* For smooth scrolling on anchor links */
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.1;
    color: #1a237e; /* Deep Indigo for authority */
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
}

/* --- Navigation Bar (NEW) --- */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* --- Logo Image Styling --- */
.logo-img {
    height: 35px; /* Adjust this value to control the height of your logo */
    width: auto;
    vertical-align: middle;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.6em;
    font-weight: 800;
    color: #ff6f00; /* Use your accent color for the logo */
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #1a237e;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ff6f00;
}

/* --- CTA Button Styling (Unchanged) --- */
.cta-button {
    display: inline-block;
    padding: 18px 35px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.primary-cta {
    background-color: #ff6f00;
    color: white;
    border: 2px solid #ff6f00;
}

.primary-cta:hover {
    background-color: #e65100;
    transform: translateY(-2px);
}

.secondary-cta {
    background-color: #ff6f00;
    color: white;
    border: 2px solid #1a237e;
}

.secondary-cta:hover {
    background-color: #000051;
    transform: translateY(-2px);
}


/* 1. Hero Section */
.hero-section {
    background-color: #1a237e;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5em;
    margin-top: 15px;
    margin-bottom: 25px;
    color: white;
}

.pre-headline {
    font-size: 1.1em;
    color: #ffb74d;
    margin-bottom: 10px;
}

.sub-headline {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.trust-bar {
    margin-top: 40px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 0.95em;
    border-radius: 4px;
    display: inline-block;
}

/* 2. Problem Section */
.problem-section {
    background-color: white;
    border-bottom: 1px solid #eee;
}

.problem-points {
    display: flex;
    gap: 30px;
    text-align: center;
}

.problem-points .point {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.problem-points h3 {
    font-size: 1.4em;
    margin-top: 0;
    color: #ff6f00;
}

/* 3. Deliverable Section */
.deliverable-section {
    background-color: #f3f4f7;
}

.deliverable-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.module {
    background-color: white;
    padding: 30px;
    border-left: 4px solid #1a237e;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.module-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #1a237e;
    margin-top: 0;
}

.section-description {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #555;
}

/* 4. Pitch Section */
.pitch-section {
    background-color: white;
}

.paid-services {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 0;
}

.paid-services li {
    background-color: #f8f8f8;
    border-left: 5px solid #ff6f00;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1.1em;
    border-radius: 4px;
}

/* 5. Final CTA */
.final-cta-section {
    background-color: #1a237e;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.final-cta-section h2 {
    color: white;
    margin-bottom: 30px;
}

.footer-note {
    margin-top: 25px;
    font-size: 1em;
    color: #ffb74d;
}

/* --- Detailed Footer (NEW) --- */
.detailed-footer {
    background-color: #333;
    color: #ccc;
    padding: 40px 0;
    font-size: 0.9em;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #555;
    margin-bottom: 20px;
}

.footer-links, .footer-social {
    width: 48%; /* Adjust width for spacing */
}

.detailed-footer h4 {
    color: white;
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 15px;
}

.detailed-footer ul {
    list-style: none;
    padding: 0;
}

.detailed-footer li {
    margin-bottom: 8px;
}

.detailed-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    display: block; /* Make links block level */
}

.detailed-footer a:hover {
    color: #ff6f00;
}

.social-link {
    display: block;
    padding: 5px 0;
    font-weight: 500;
}

.copyright {
    text-align: center;
    color: #888;
    font-size: 0.85em;
}

/* Styling for the CTA Icon in the Nav Bar */
.nav-cta {
    position: relative; /* Allows icon positioning relative to the link */
    padding-right: 35px !important; /* Add space for the icon */
    display: inline-block;
}

.cta-icon {
    /* Creates the blue shield/chat-like icon */
    position: absolute;
    top: 50%;
    right: 10px; /* Position it on the right side of the padding */
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #4CAF50; /* A good visible color, though you may want to use a specific shade of blue */
    border-radius: 4px;
    /* This creates a simple visual representation */
    background-color: #2196F3; /* Bright Blue to match the image */
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%); /* Simple chat bubble shape */
}
/* Mobile Menu Toggle (Hamburger Icon) */
.menu-toggle {
    display: none; /* Hidden on Desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px; /* Increased padding for easier tapping */
    height: 30px; /* Increased height for better visibility */
    width: 30px; /* Increased width */
    position: relative;
    z-index: 1010;
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ff6f00; /* KEY FIX: Use the bright Orange accent color for visibility */
    margin: 5px 0; /* Increased margin for better separation */
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Ensure the button is only shown on mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show the hamburger on mobile screens */
    }
}

/* Ensure the icon doesn't show in the mobile menu when it's stacked, if necessary */
@media (max-width: 768px) {
    .nav-cta {
        padding-right: 15px !important; /* Remove the extra padding */
    }
    .cta-icon {
        display: none; /* Hide the icon on small screens to keep the mobile menu clean */
    }
}

/* --- Responsive Adjustments (UPDATED MEDIA QUERIES) --- */

/* Mobile Devices (max 768px) */
@media (max-width: 768px) {
    /* General Adjustments */
    .section-padding {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.5em !important;
    }

    h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .sub-headline {
        font-size: 1.1em;
    }

    /* Navigation */
    .nav-content {
        flex-direction: column;
    }

    .nav-links {
        justify-content: center;
        margin-top: 10px;
        flex-wrap: wrap; /* Allow links to wrap */
    }

    .nav-links li {
        margin: 5px 15px;
    }

    /* Layout Sections */
    .problem-points {
        flex-direction: column;
    }

    .problem-points .point {
        text-align: left;
    }
    
    .deliverable-modules {
        grid-template-columns: 1fr; /* Stack modules vertically */
    }

    /* CTA Button Size */
    .cta-button {
        padding: 15px 25px;
        font-size: 1.1em;
    }

    /* Footer */
    .footer-grid {
        flex-direction: column;
    }

    .footer-links, .footer-social {
        width: 100%;
        margin-bottom: 25px;
    }
}
/* --- Responsive Adjustments for Navigation (Inside Media Query) --- */
@media (max-width: 768px) {
    /* ... other existing mobile styles ... */
    
    .nav-content {
        /* Keep logo and toggle button visible */
        justify-content: space-between; 
    }

    /* HIDE the navigation links by default on mobile */
    .nav-links {
        display: none; /* KEY CHANGE: Hide links by default */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Push it down below the sticky nav bar */
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        text-align: center;
    }
    
    /* SHOW the mobile menu when the 'active' class is added by JavaScript */
    .nav-links.active {
        display: flex; 
    }

    .nav-links li {
        margin: 10px 0; /* Add vertical spacing for touch targets */
    }
    
    /* Show the hamburger icon */
    .menu-toggle {
        display: block; 
    }
}