:root {
    --primary-blue: #22427d;
    /* User specified background color */
    --accent-green: #25d366;
    /* WhatsApp green */
    --text-white: #ffffff;
    --text-dark: #333333;
    --bg-light: #f4f4f4;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--primary-blue);
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    background-color: var(--bg-light);
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    font-size: 14px;
}

nav ul li a.active {
    color: var(--primary-blue);
}

/* Main Content */
.main-content {
    text-align: center;
    color: white;
    padding: 50px 0 80px;
    background-color: var(--primary-blue);
    min-height: 80vh;
}

.main-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.main-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Card */
.order-card {
    position: relative;
    overflow: hidden;
    background: white;
    color: #333;
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #35d86d 0%, #17a07f 100%);
}

.whatsapp-icon {
    background-color: var(--accent-green);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.order-card h2 {
    font-size: 2.7rem;
    margin-bottom: 10px;
}

.order-card p.desc {
    color: #919594;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 56px;
    text-align: left;
}

.feature-item {
    background: #f8f9fe;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: #5a5a5a;
}

.feature-item i {
    color: var(--accent-green);
    margin-right: 10px;
}

.cta-button {
    background-color: var(--accent-green);
    color: white;
    padding: 18px 48px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button i {
    margin-right: 10px;
}

/* Specific styling for the WhatsApp order button to match the visual */
.cta-button.whatsapp-gradient-btn {
    background: linear-gradient(90deg, #35d86d 0%, #17a07f 100%);
    box-shadow: 0 10px 25px -5px rgba(53, 216, 109, 0.5);
    border: none;
}

.cta-button.whatsapp-gradient-btn:hover {
    background: linear-gradient(90deg, #39e774 0%, #1ab28d 100%);
    box-shadow: 0 12px 30px -5px rgba(53, 216, 109, 0.6);
}

/* How It Works */
.how-it-works {
    margin-top: 56px;
    background: #f8f9fe;
    padding: 20px;
    border-radius: 10px;
}

.how-it-works h3 {
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}

.step {
    display: flex;
    align-items: flex-start;
}

.step-number {
    background-color: var(--accent-green);
    color: white;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    margin-right: 15px;
    flex-shrink: 0;
    padding: 6px;
    box-sizing: border-box;
}

.step-content {
    text-align: center;
    flex: 1;
    max-width: 205px;
}

.step-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #7a7a7a;
    font-weight: 500;
    line-height: 1.4;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    text-align: center;
}

.footer-col h4 {
    color: var(--accent-green);
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.35;
}

.footer-col p + p {
    margin-top: 0;
}

.footer-col .fa-phone {
    color: #e74c3c;
}

.social-icons {
    margin-top: 16px;
}

.social-icons a {
    color: white;
    /* Fallback */
    background: var(--accent-green);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding-bottom: 20px;
    }

    /* Change .container within header to flex column */
    header .container {
        flex-direction: row !important;
        /* Keep header items in row on mobile */
    }

    .desktop-nav {
        display: none !important;
        /* Hide desktop menu on mobile */
    }

    #mobile-toggle-btn {
        display: block !important;
        /* Show toggle button on mobile */
    }

    nav ul {
        display: none;
        /* Hide default nav list styling */
    }

    .logo {
        margin-bottom: 0;
    }

    .main-content h1 {
        font-size: 2rem;
    }

    .main-content .subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .order-card {
        padding: 25px 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        /* Stack single column */
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }
}