@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Reset to ensure no gaps */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* General Body & Typography */
html {
    scroll-padding-top: 120px; /* Increased padding for fixed header */
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 90px; /* Adjusted for mobile header height */
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 80px; /* Adjusted for smaller mobile header */
    }
}

body {
    font-family: 'Josefin Sans', 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #f0f0f0; /* Light gray for better readability on a dark background */
    line-height: 1.6;
    position: relative;
    z-index: 0;
    background: url('images/website background.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* This will make the background fixed while scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    min-width: 100%;
    max-width: 100vw;
}

/* Adjust background for mobile portrait */
@media (max-width: 1024px) and (orientation: portrait) {
    body {
        background-position: 65% center;
        background-size: auto 100vh;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    body {
        background-position: 80% center;
        background-size: auto 100vh;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    body {
        background-position: 85% center;
        background-size: auto 100vh;
    }
}

/* Ensure background overlay works properly */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4 {
    text-align: center;
    color: #ffffff;
    margin-top: 0;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    margin-bottom: 15px; /* Reduced spacing after headings */
}

h1 {
    font-size: 5.5em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 4.2em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 3.2em;
    }
}

h2 {
    font-size: 2.2em;
    padding-bottom: 8px; /* Reduced from 10px */
    margin-bottom: 20px; /* Reduced from 30px */
    border-bottom: none;
    transition: border-color 0.4s ease;
}

/* Add specific styling for section headings that should retain the border */
section:not(#home) h2 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

section:not(#home) h2:hover {
    border-color: #007bff;
}

h3 {
    color: #00aaff;
}

a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #007bff;
}

main {
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Ensure minimum height for main content */
main {
    min-height: calc(100vh - 75px); /* Subtract header height */
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

section {
    background: transparent;
    padding: 25px 20px; /* Reduced from 40px */
    margin-bottom: 15px; /* Reduced from 20px */
    border-radius: 8px;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box; /* Include padding in width calculation */
}

section h2:first-child {
    padding-top: 20px; /* Add space above the heading */
    margin-top: 0;
}

/* Header & Navigation */
header {
    background-color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar styles for desktop */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 75px; /* Increased from 65px */
    margin: 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    height: 55px; /* Increased from 40px */
    transition: transform 0.3s ease;
}

.logo img {
    height: 100%;
    width: auto;
}

@media (max-width: 768px) {
    .logo {
        height: 45px; /* Increased from 35px */
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px; /* Increased from 30px */
    }
}

/* Adjust navbar height to accommodate larger logo */
.navbar {
    height: 75px; /* Increased from 65px */
}

@media (max-width: 768px) {
    .navbar {
        height: 65px; /* Increased from 60px */
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 60px; /* Adjusted for smaller screens */
    }
}

.nav-links {
    display: flex;
    gap: 25px; /* Slightly reduced gap */
}

.nav-links a {
    color: #f0f0f0;
    font-weight: 500;
    font-size: 0.95rem; /* Slightly smaller font */
    padding: 4px 0;
    position: relative;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s ease;
}

/* Adjust body padding for new navbar height */
body {
    padding-top: 65px; /* Match new navbar height */
}

/* Adjust scroll padding for anchor links */
html {
    scroll-padding-top: 75px; /* Slightly more than navbar height */
}

/* Mobile styles */
@media (max-width: 1024px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    body {
        padding-top: 70px; /* Adjusted for mobile navbar height */
    }
}

/* Adjust padding for smaller screens and show more of robot in background */
@media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 1.8em; }

    body {
        padding-top: 70px;
    }
    
    /* Show more of the robot in portrait mode */
    @media (orientation: portrait) {
        body {
            background-position: 70% center; /* Shift background to show more of the robot */
        }
    }

    .navbar {
        padding: 0 15px; /* Consistent padding */
        position: relative;
        height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        left: 0;
        right: 0;
    }

    main {
        padding: 15px; /* Consistent padding */
    }

    section {
        padding: 30px 15px; /* Reduced padding for mobile */
    }

    .pricing-grid, .features-grid, .steps-container, .benefits-content {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

    .pricing-plan, .feature-item, .step, .benefit-item, .contact-box {
        margin-bottom: 15px; /* Consistent spacing */
    }

    .both-plans-info {
        margin-top: 30px;
        padding: 20px 15px; /* Consistent padding */
    }

    .hamburger {
        display: block;
        cursor: pointer;
        position: static; /* Change from absolute to static */
        padding: 8px;
        background-color: transparent;
        border-radius: 4px;
        margin-left: auto; /* Push to the right */
        margin-right: 10px; /* Add space from the right edge */
        z-index: 1001;
    }

    .bar {
        width: 35px; /* Slightly wider */
        height: 4px;
        margin: 7px 0; /* More space between bars */
        background-color: #f0f0f0;
        box-shadow: 0 1px 2px rgba(0,0,0,0.3); /* Add shadow for better visibility */
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 85px;
        gap: 0;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        text-align: center;
        transition: max-height 0.4s ease-in-out;
        overflow: hidden;
        max-height: 0;
    }

    .nav-links.active {
        max-height: 400px; /* Adjust as needed */
    }

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    body {
        padding-top: 60px; /* Smaller navbar height */
    }
    
    /* Show even more of the robot on very small devices in portrait */
    @media (orientation: portrait) {
        body {
            background-position: 75% center; /* Shift background even more */
        }
    }
}

/* Adjust for landscape */
@media (max-width: 900px) and (orientation: landscape) {
    body {
        padding-top: 60px; /* Landscape navbar height */
    }
}
    
    /* Rest of the mobile styles */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 50px;
        height: 85px;
        margin: 0;
        position: relative; /* Add this to make absolute positioning work */
        width: 100%;
        box-sizing: border-box;
    }

    .logo {
        height: 60px;
        transition: transform 0.3s ease;
    }
    .logo img{
        height: 100%;
    }
    .logo:hover {
        transform: scale(1.05);
    }

    .nav-links {
        display: flex;
        gap: 30px;
    }

    .nav-links a {
        color: #f0f0f0;
        font-weight: 500;
        padding: 5px 0;
        position: relative;
        text-decoration: none;
        transition: color 0.3s, transform 0.3s ease;
    }

    .nav-links a:hover, .nav-links a.active {
        color: #00aaff;
        transform: translateY(-2px);
    }

    /* Prices Section */
    #prices {
        text-align: center;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px; /* Reduced from 30px */
        margin-top: 25px; /* Reduced from 40px */
    }

    .pricing-plan {
        background-color: rgba(255, 255, 255, 0.05);
        padding: 20px; /* Reduced from 30px */
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 123, 255, 0.2);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        text-align: left;
        margin-bottom: 12px; /* Reduced spacing */
    }

    .pricing-plan:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 123, 255, 0.35);
    }

    .pricing-plan h3 {
        color: #00aaff;
        font-size: 1.5em;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .pricing-plan ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pricing-plan ul li {
        margin-bottom: 12px;
        font-size: 1.1em;
    }

    .both-plans-info {
        margin-top: 30px;
        padding: 20px; /* Reduced from 30px */
        background-color: rgba(0,0,0,0.3);
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 123, 255, 0.2);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .both-plans-info:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 123, 255, 0.35);
    }

    .both-plans-info h3 {
        color: #ffffff;
        font-size: 1.4em;
        margin-bottom: 20px;
    }

    .both-plans-info ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .both-plans-info ul li {
        margin-bottom: 10px;
    }


    /* Specific Section Styling */
    #home {
        text-align: center;
        padding-top: 60px;
    }

    .feature-item, .step, .benefit-item, .contact-box {
        background-color: transparent;
        padding: 25px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 123, 255, 0.2);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .feature-item, .step, .benefit-item {
        padding: 25px;
    }

    .feature-item:hover, .step:hover, .benefit-item:hover, .contact-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 123, 255, 0.35);
    }

    blockquote {
        font-size: 1.3em;
        font-style: italic;
        color: #dddddd;
        border-left: 3px solid #ccc;
        padding-left: 20px;
        margin: 40px auto;
        max-width: 80%;
    }

    .cta-button {
        display: inline-block;
        background-color: #007bff;
        color: #ffffff;
        padding: 12px 28px;
        font-size: 1.1em;
        font-weight: 600;
        border-radius: 4px;
        transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
        border: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .cta-button:hover {
        background-color: #0056b3;
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    /* Footer */
    footer {
        background-color: rgba(0, 0, 0, 0.7);
        color: #f0f0f0;
        text-align: center;
        padding: 40px 20px; /* Increased vertical padding */
        margin-top: 40px;
        box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
    }

    /* Get in Touch Section */
    #get-in-touch {
        padding: 80px 20px;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.6);
        position: relative;
        z-index: 0;
        overflow: hidden;
    }

    #get-in-touch h2 {
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 40px;
    }

    .contact-boxes {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .contact-box {
        background-color: transparent;
        padding: 25px 40px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 123, 255, 0.2);
        min-width: 280px;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 112px;
    }

    .contact-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 123, 255, 0.35);
    }

    .contact-box a svg {
        width: 60px;
        height: 60px;
        transition: all 0.3s ease;
    }

    .whatsapp-link svg {
        fill: #25D366;
    }

    .whatsapp-link:hover svg {
        fill: #128C7E;
        transform: scale(1.1);
    }

    .email-link svg {
        fill: #007bff;
    }

    .email-link:hover svg {
        fill: #0056b3;
        transform: scale(1.1);
    }

    .contact-box h3 {
        margin-top: 0;
        color: #333;
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .contact-box a,
    .contact-box p {
        font-size: 1.1em;
        color: #555;
        text-decoration: none;
    }

    footer p {
        margin: 0;
        font-size: 0.9em;
        line-height: 1.6;
    }

    footer .aisod-link {
        color: #007bff;
        text-decoration: none;
        font-weight: 500;
    }

    footer .powered-by {
        color: inherit;
    }

    /* Removing previously added animations that are now replaced */
    body.fade-out {
        opacity: 1; /* Override fade-out */
    }

    @keyframes fadeIn { /* Keep for initial load */
        from { opacity: 0; }
        to { opacity: 1; }
    }

    main > section { 
        animation: none; /* remove staggered animation */
        opacity: 1;
        transform: none;
    }
    @keyframes slideUpFadeIn {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    main > section{
        opacity: 0;
        transform: translateY(30px);
        animation: slideUpFadeIn 1s ease-out forwards;
    }
    main > section:nth-child(1) { animation-delay: 0.2s; }
    main > section:nth-child(2) { animation-delay: 0.4s; }
    main > section:nth-child(3) { animation-delay: 0.6s; }
    main > section:nth-child(4) { animation-delay: 0.8s; }
    main > section:nth-child(5) { animation-delay: 1s; }
    h1, h2, h3, p, ul {
        margin-bottom: 1em;
    }
    ul {
        padding: 0;
    }
    ul li {
        list-style: none;
        margin-bottom: 10px;
    }
    #why-us, #benefits, #cta-how, #get-started, #contact-content, .features-list-page {
        margin-top: 40px;
    }
    .features-grid, .steps-container, .benefits-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    @media (max-width: 768px) {
        h1 { font-size: 2.5em; }
        h2 { font-size: 1.8em; }

        .navbar {
            padding: 0 15px; /* Consistent padding */
            position: relative;
            height: 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            box-sizing: border-box;
            left: 0;
            right: 0;
        }

        main {
            padding: 15px; /* Consistent padding */
        }

        section {
            padding: 30px 15px; /* Reduced padding for mobile */
        }

        .pricing-grid, .features-grid, .steps-container, .benefits-content {
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 20px;
        }

        .pricing-plan, .feature-item, .step, .benefit-item, .contact-box {
            margin-bottom: 15px; /* Consistent spacing */
        }

        .both-plans-info {
            margin-top: 30px;
            padding: 20px 15px; /* Consistent padding */
        }

        .hamburger {
            display: block;
            cursor: pointer;
            position: static; /* Change from absolute to static */
            padding: 8px;
            background-color: transparent;
            border-radius: 4px;
            margin-left: auto; /* Push to the right */
            margin-right: 10px; /* Add space from the right edge */
            z-index: 1001;
        }

        .bar {
            width: 35px; /* Slightly wider */
            height: 4px;
            margin: 7px 0; /* More space between bars */
            background-color: #f0f0f0;
            box-shadow: 0 1px 2px rgba(0,0,0,0.3); /* Add shadow for better visibility */
        }

        .nav-links {
            position: fixed;
            left: 0;
            top: 85px;
            gap: 0;
            flex-direction: column;
            background-color: #333;
            width: 100%;
            text-align: center;
            transition: max-height 0.4s ease-in-out;
            overflow: hidden;
            max-height: 0;
        }

        .nav-links.active {
            max-height: 400px; /* Adjust as needed */
        }

        .nav-links a {
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
    }

    .hamburger {
        display: none;
        z-index: 1001;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: white;
    } 

    /* Additional responsive adjustments */
    @media (max-width: 480px) {
        /* Extra small devices (phones) */
        h1 { font-size: 2em; }
        h2 { font-size: 1.6em; }
        h3 { font-size: 1.3em; }
        
        .navbar {
            height: 60px; /* Slightly smaller navbar */
        }
        
        .logo {
            height: 45px; /* Smaller logo */
        }
        
        .hamburger {
            margin-right: 5px; /* Less margin on very small screens */
        }
        
        .bar {
            width: 30px; /* Slightly smaller on very small screens */
        }
    }

    /* Landscape orientation for mobile */
    @media (max-width: 900px) and (orientation: landscape) {
        .navbar {
            height: 60px; /* Smaller navbar in landscape */
            padding: 0 15px;
            width: 100%;
            box-sizing: border-box;
            left: 0;
            right: 0;
        }
        
        .nav-links.active {
            max-height: calc(100vh - 60px); /* Use viewport height minus navbar height */
            overflow-y: auto; /* Enable scrolling */
        }
        
        .nav-links a {
            padding: 10px 0; /* Smaller padding for landscape */
            font-size: 0.9em; /* Slightly smaller font */
        }
        
        section {
            padding: 20px 15px; /* Less vertical padding in landscape */
        }
    }

    /* Ensure hamburger is visible on all devices */
    @media (max-width: 1024px) {
        /* Ensure hamburger is visible on all devices */
        .hamburger {
            display: block;
        }
        
        .nav-links {
            position: absolute;
            left: 0;
            top: 100%; /* Position right at the bottom of navbar */
            margin: 0;
            padding: 0;
            gap: 0;
            flex-direction: column;
            background-color: #333;
            width: 100%;
            text-align: center;
            transition: max-height 0.4s ease-in-out;
            overflow: hidden;
            max-height: 0;
            z-index: 1000;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Add shadow for separation */
        }
        
        .nav-links.active {
            max-height: 400px;
            overflow-y: auto; /* Enable scrolling if needed */
        }

        .nav-links a {
            padding: 15px 10px;
            margin: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: block;
            white-space: nowrap;
            font-size: 0.95rem; /* Slightly smaller font for longer items */
        }
        
        .nav-links a:first-child {
            border-top: none; /* Remove top border on first item */
        }
        
        .nav-links li {
            margin: 0;
            padding: 0;
        }
    } 

/* Mobile Animation Enhancements */
@media (max-width: 1024px) {
    /* Enhanced hamburger menu animation */
    .hamburger {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger.active {
        transform: rotate(180deg);
    }

    .bar {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
        background-color: #00aaff;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
        background-color: #00aaff;
    }

    /* Enhanced mobile navigation animation */
    .nav-links {
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
    }

    .nav-links.active {
        transform: scaleY(1);
        opacity: 1;
    }

    .nav-links a {
        transform: translateY(-20px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.1s;
    }

    .nav-links.active a {
        transform: translateY(0);
        opacity: 1;
    }

    /* Enhanced feature items animation */
    .feature-item, .pricing-plan, .step, .benefit-item {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    background-color 0.3s ease;
    }

    .feature-item:active, .pricing-plan:active, .step:active, .benefit-item:active {
        transform: scale(0.95);
        background-color: rgba(0, 170, 255, 0.1);
    }

    /* Enhanced button animations */
    .cta-button {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .cta-button:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s ease-out, height 0.6s ease-out;
    }

    .cta-button:active:after {
        width: 200px;
        height: 200px;
    }

    /* Scroll-based animations for sections */
    @keyframes fadeSlideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    section {
        opacity: 0;
        animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-play-state: paused;
    }

    section.visible {
        animation-play-state: running;
    }

    /* Staggered animation delays for list items */
    .features-list-page li, 
    .pricing-plan li,
    .about-content li {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .features-list-page.visible li, 
    .pricing-plan.visible li,
    .about-content.visible li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Add animation delay for each list item */
    li:nth-child(1) { transition-delay: 0.1s; }
    li:nth-child(2) { transition-delay: 0.2s; }
    li:nth-child(3) { transition-delay: 0.3s; }
    li:nth-child(4) { transition-delay: 0.4s; }
    li:nth-child(5) { transition-delay: 0.5s; }
    li:nth-child(6) { transition-delay: 0.6s; }

    /* Contact box animations */
    .contact-box {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .contact-box:active {
        transform: scale(0.95);
        background-color: rgba(0, 170, 255, 0.1);
    }

    .contact-box svg {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .contact-box:active svg {
        transform: scale(1.2);
    }
} 

#unlocking-profitability {
    margin-top: 40px;
    padding: 20px;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

#unlocking-profitability:hover {
    transform: none;
    box-shadow: none;
}

.profitability-intro {
    text-align: center;
    margin-bottom: 40px;
}

.profitability-intro h3 {
    color: #00aaff;
    font-size: 1.8em;
    margin-bottom: 20px;
}

/* Keep the styling for inner content boxes */
.countdown-sheet, .psychology-vault, .success-path {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-sheet:hover, .psychology-vault:hover, .success-path:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

.trade-markers, .sheet-benefits {
    margin: 20px 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.trade-markers ul, .sheet-benefits ul {
    margin-top: 10px;
}

.trade-markers li, .sheet-benefits li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.trade-markers li:before, .sheet-benefits li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00aaff;
}

p.note {
    font-style: italic;
    color: #aaa;
    margin: 15px 0;
}

p.emphasis {
    font-size: 1.2em;
    color: #00aaff;
    font-weight: 600;
    text-align: center;
    margin: 25px 0;
}

.psychology-vault ul {
    margin: 20px 0;
}

.psychology-vault li {
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
}

.psychology-vault li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00aaff;
}

.success-path {
    text-align: center;
}

.success-path h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #unlocking-profitability {
        padding: 20px;
        margin-top: 40px;
    }

    .profitability-intro h3 {
        font-size: 1.5em;
    }

    .countdown-sheet, .psychology-vault, .success-path {
        padding: 20px;
        margin: 20px 0;
    }

    .trade-markers, .sheet-benefits {
        padding: 15px;
    }

    p.emphasis {
        font-size: 1.1em;
    }
} 

/* Mobile text visibility improvements */
@media (max-width: 768px) {
    /* Base text styles for better readability */
    p, li, .feature-item p, .step p, .benefit-item p, 
    .pricing-plan li, .about-content p, .about-content li,
    .features-list-page li, .contact-box p, .contact-box a,
    .countdown-sheet p, .psychology-vault p, .success-path p,
    .trade-markers li, .sheet-benefits li, .psychology-vault li {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 0.8em;
        color: #f0f0f0;
        opacity: 1;
        visibility: visible;
    }

    /* Ensure all text containers have proper spacing */
    .feature-item, .step, .benefit-item, .pricing-plan,
    .about-content, .countdown-sheet, .psychology-vault,
    .success-path, .contact-box {
        padding: 20px;
        margin-bottom: 20px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
    }

    /* Improve heading visibility */
    h1, h2, h3 {
        color: #ffffff;
        margin-bottom: 15px;
        line-height: 1.3;
        opacity: 1;
        visibility: visible;
    }

    h1 { font-size: 2em; }
    h2 { font-size: 1.8em; }
    h3 { 
        font-size: 1.4em;
        color: #00aaff;
    }

    /* Ensure lists are properly visible */
    ul, ol {
        padding-left: 0;
        margin-bottom: 1em;
    }

    ul li, ol li {
        margin-bottom: 0.8em;
        padding-left: 20px;
        position: relative;
    }

    /* Improve section spacing and visibility */
    section {
        padding: 30px 15px;
        margin-bottom: 30px;
        background-color: rgba(0, 0, 0, 0.1);
    }

    /* Ensure emphasis text stands out */
    p.emphasis {
        font-size: 1.1em;
        font-weight: 600;
        color: #00aaff;
        margin: 20px 0;
        text-align: center;
    }

    /* Make notes visible but distinct */
    p.note {
        font-size: 0.9rem;
        font-style: italic;
        color: #aaa;
        margin: 15px 0;
    }

    /* Ensure blockquotes are readable */
    blockquote {
        font-size: 1.1em;
        padding: 15px 20px;
        margin: 20px 0;
        border-left: 3px solid #00aaff;
        background-color: rgba(0, 0, 0, 0.2);
    }

    /* Improve feature descriptions */
    .feature-item p, .step p, .benefit-item p {
        margin: 10px 0;
        color: #f0f0f0;
        opacity: 1;
    }

    /* Enhance pricing plan content */
    .pricing-plan ul li {
        margin-bottom: 12px;
        line-height: 1.5;
        color: #f0f0f0;
    }

    /* Improve about section readability */
    .about-content {
        margin: 20px 0;
    }

    .about-content p,
    .about-content ul li {
        margin-bottom: 12px;
        color: #f0f0f0;
    }

    /* Enhance unlocking profitability section */
    #unlocking-profitability {
        padding: 25px 20px;
        margin: 30px 0;
    }

    .profitability-intro p {
        margin-bottom: 15px;
        color: #f0f0f0;
    }

    /* Ensure list markers are visible */
    .trade-markers li:before,
    .sheet-benefits li:before,
    .psychology-vault li:before {
        color: #00aaff;
        opacity: 1;
        visibility: visible;
    }

    /* Improve contact information visibility */
    .contact-box {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .contact-box p,
    .contact-box a {
        color: #f0f0f0;
        margin: 10px 0;
    }
}

/* Extra small devices refinements */
@media (max-width: 480px) {
    p, li {
        font-size: 0.95rem;
    }

    h1 { font-size: 1.8em; }
    h2 { font-size: 1.6em; }
    h3 { font-size: 1.3em; }

    section {
        padding: 15px 10px;
    }

    .feature-item,
    .pricing-plan,
    .step,
    .benefit-item,
    .contact-box {
        padding: 8px;
    }

    blockquote {
        font-size: 1em;
        padding: 12px 15px;
    }

    p.emphasis {
        font-size: 1em;
    }
} 

/* Hamburger Menu Animation */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
    transition: all 0.3s ease-in-out;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #f0f0f0;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }

    /* Hamburger Animation */
    .hamburger.active {
        transform: rotate(0deg);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #00aaff;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #00aaff;
    }

    /* Smooth Nav Links Animation */
    .nav-links {
        position: fixed;
        left: 0;
        top: 70px; /* Match navbar height */
        gap: 0;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }

    .nav-links.active {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
        max-height: 400px;
    }

    .nav-links a {
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    }

    .nav-links.active a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: 0.2s;
    }
}

/* Adjust hamburger size for smaller screens */
@media (max-width: 480px) {
    .hamburger {
        padding: 6px;
    }

    .bar {
        width: 22px;
        height: 2px;
        margin: 4px auto;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
} 

/* Mobile Navigation Spacing Fixes */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 10px;
        height: 60px;
        margin: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        border: none;
        background-color: #333;
    }

    .logo {
        height: 45px;
        margin: 0;
    }

    .hamburger {
        margin: 0;
        padding: 8px 0;
    }

    /* Adjust nav-links positioning */
    .nav-links {
        position: fixed;
        left: 0;
        top: 60px; /* Match navbar height exactly */
        margin: 0;
        padding: 0;
        width: 100%;
        background-color: #333;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        max-height: calc(100vh - 60px); /* Subtract navbar height */
        overflow-y: auto;
    }

    .nav-links a {
        padding: 12px 15px;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }

    /* Adjust body padding */
    body {
        padding-top: 60px;
        margin: 0;
    }
}

/* Further refinements for smaller devices */
@media (max-width: 480px) {
    .navbar {
        padding: 0 8px;
        height: 50px;
    }

    .logo {
        height: 35px;
    }

    .nav-links {
        top: 50px;
    }

    .nav-links.active {
        max-height: calc(100vh - 50px);
    }

    .nav-links a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    body {
        padding-top: 50px;
    }

    .hamburger {
        padding: 6px 0;
    }
}

/* Landscape mode adjustments */
@media (max-width: 900px) and (orientation: landscape) {
    .navbar {
        height: 50px;
        padding: 0 10px;
    }

    .nav-links {
        top: 50px;
    }

    .nav-links.active {
        max-height: calc(100vh - 50px);
    }

    body {
        padding-top: 50px;
        margin: 0;
    }
} 

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.feature-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    min-height: 120px;
}

.feature-item h3 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #00aaff;
}

.feature-item p {
    font-size: 0.9em;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .feature-item {
        padding: 12px;
        min-height: 100px;
    }
    
    .feature-item h3 {
        font-size: 1em;
    }
    
    .feature-item p {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature-item {
        padding: 10px;
        min-height: auto;
    }
} 

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
}

.about-item {
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.about-item h3 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #00aaff;
}

.about-item p {
    font-size: 0.9em;
    margin: 0;
    line-height: 1.4;
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 15px;
        gap: 12px;
    }
    
    .about-item {
        padding: 12px;
    }
    
    .about-item h3 {
        font-size: 1em;
    }
    
    .about-item p {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .about-grid {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 10px;
    }
    
    .about-item {
        padding: 10px;
    }
} 

.dyk-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .dyk-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .dyk-image {
        max-width: 200px;
    }
}

#why-us {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.dyk-image {
    width: 180px;
    height: auto;
    flex-shrink: 0;
}

.why-us-content {
    flex: 1;
}

.why-us-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #f0f0f0;
    margin: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #why-us {
        flex-direction: row; /* Keep horizontal layout */
        padding: 20px;
        gap: 20px;
        align-items: center;
    }

    .dyk-image {
        width: 100px; /* Smaller image on mobile */
    }

    .why-us-content {
        text-align: left; /* Keep text left-aligned */
    }

    .why-us-content p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    #why-us {
        padding: 15px;
        gap: 15px;
    }

    .dyk-image {
        width: 80px; /* Even smaller for very small screens */
    }
    
    .why-us-content p {
        font-size: 0.9em;
    }
} 

.why-choose-heading {
    margin-top: 30px; /* Reduced from 50px */
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; /* Reduced from 15px */
    margin: 15px 0; /* Reduced from 25px */
}

.grid-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px; /* Reduced from 20px */
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

.grid-item h4 {
    color: #00aaff;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.grid-item ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.grid-item ul li {
    margin: 10px 0;
    color: #f0f0f0;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .countdown-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .grid-item {
        padding: 15px;
    }

    .grid-item h4 {
        font-size: 1em;
    }

    .grid-item ul li {
        font-size: 0.9em;
    }
} 

.psychology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.psychology-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.psychology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
    background: rgba(0, 0, 0, 0.4);
}

.psychology-item h4 {
    color: #00aaff;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.psychology-item p {
    color: #f0f0f0;
    margin: 0;
    font-size: 0.9em;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .psychology-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .psychology-item {
        padding: 12px;
    }

    .psychology-item h4 {
        font-size: 1em;
    }

    .psychology-item p {
        font-size: 0.85em;
    }
} 

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.step {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 120px;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
    background: rgba(0, 0, 0, 0.4);
}

.step h3 {
    font-size: 1em;
    margin-bottom: 8px;
    color: #00aaff;
}

.step p {
    font-size: 0.9em;
    margin: 0;
    line-height: 1.4;
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .step {
        padding: 12px;
        min-height: 100px;
    }
    
    .step h3 {
        font-size: 0.95em;
    }
    
    .step p {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .step {
        padding: 10px;
        min-height: auto;
    }
} 

.benefits-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.benefit-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 100px;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
    background: rgba(0, 0, 0, 0.4);
}

.benefit-item h3 {
    font-size: 1em;
    margin-bottom: 8px;
    color: #00aaff;
}

.benefit-item p {
    font-size: 0.85em;
    margin: 0;
    line-height: 1.3;
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .benefits-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .benefit-item {
        padding: 12px;
        min-height: 90px;
    }
    
    .benefit-item h3 {
        font-size: 0.95em;
        margin-bottom: 6px;
    }
    
    .benefit-item p {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .benefit-item {
        padding: 10px;
        min-height: auto;
    }
} 

.features-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.feature-list-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
    background: rgba(0, 0, 0, 0.4);
}

.feature-list-item p {
    color: #f0f0f0;
    margin: 0;
    font-size: 0.95em;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .features-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-list-item {
        padding: 12px;
    }
    
    .feature-list-item p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .features-list-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature-list-item {
        padding: 10px;
    }
} 

.prices-section {
    text-align: center;
    margin: 30px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    max-width: 1100px; /* Match the main content width */
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px auto;
    padding: 0 20px;
    max-width: 800px;
}

.price-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0;
}

.price-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

.price-item h4 {
    color: #00aaff;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.price-item .price {
    font-size: 1.8em;
    color: #ffffff;
    font-weight: bold;
    margin: 0;
}

@media (max-width: 768px) {
    .prices-section {
        margin: 20px 15px;
        padding: 15px;
    }
    
    .prices-grid {
        gap: 15px;
        padding: 0 15px;
    }
    
    .price-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .prices-section {
        margin: 15px 10px;
        padding: 10px;
    }

    .prices-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 10px;
    }
    
    .price-item {
        padding: 12px;
    }
} 

.feature-item, .price-item, .pricing-plan, .about-item, .psychology-item, .step, .benefit-item, .grid-item, .feature-list-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: center; /* Center align all text */
}

.feature-item p, .pricing-plan p, .about-item p, .psychology-item p, .step p, .benefit-item p, .grid-item p, .feature-list-item p,
.pricing-plan ul, .grid-item ul {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Keep the why-us section left-aligned */
#why-us {
    text-align: left;
}

#why-us .why-us-content {
    text-align: left;
}

#why-us .why-us-content p {
    text-align: left;
}

/* Ensure pricing plan lists are centered */
.pricing-plan ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

.pricing-plan ul li {
    text-align: center;
}

/* Center align both plans info */
.both-plans-info {
    text-align: center;
    }

.both-plans-info ul {
    text-align: center;
}

.both-plans-info ul li {
    text-align: center;
}

/* Center align contact content */
.contact-content {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px; /* Increased to match why-us section */
    width: 100%;
    box-sizing: border-box;
}

.contact-content p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #f0f0f0;
    font-weight: 500;
}

.contact-content ul {
    text-align: center;
    padding: 0;
    list-style: none;
    margin: 0 auto;
    max-width: 600px;
}

.contact-content ul li {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #f0f0f0;
    line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .contact-content {
        padding: 25px;
        margin: 15px auto;
    }
    
    .contact-content p {
    font-size: 1.1em;
        margin-bottom: 15px;
}

    .contact-content ul li {
    font-size: 1em;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 20px;
        margin: 12px auto;
    }
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(45deg, #833AB4, #C13584, #E1306C);
    transition: all 0.3s ease;
    padding: 10px;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.contact-content.socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    box-sizing: border-box;
}

.contact-content.socials h2 {
    margin-bottom: 25px;
    border-bottom: none;
    text-align: center;
    font-size: 2em;
    color: #ffffff;
}

.contact-content.socials ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .contact-content.socials {
        margin: 30px auto;
        padding: 25px;
    }

    .contact-content.socials h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .contact-content.socials {
        margin: 25px auto;
        padding: 20px;
    }
    
    .contact-content.socials h2 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.floating-whatsapp svg {
    width: 40px;
    height: 40px;
    fill: white;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

.floating-whatsapp a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    background-color: #22c35e;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp a {
        width: 55px;
        height: 55px;
    }

    .floating-whatsapp svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }

    .floating-whatsapp a {
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

.centered-highlight {
    text-align: center;
    font-size: 1.5em;
    color: #fff;
    font-weight: 600;
    margin: 30px 0 25px 0;
    letter-spacing: 0.5px;
    background: none;
    box-shadow: none;
    border: none;
}

@media (max-width: 900px) and (orientation: landscape) {
    .pricing-plan {
        opacity: 1 !important;
        visibility: visible !important;
        color: #f0f0f0 !important;
        font-size: 1em !important;
        padding: 18px !important;
        min-height: 0 !important;
    }
    .pricing-plan ul,
    .pricing-plan ul li {
        opacity: 1 !important;
        visibility: visible !important;
        color: #f0f0f0 !important;
        font-size: 1em !important;
    }
} 