        /* --- BRAND COLORS & VARIABLES --- */
        :root {
            --color-light-green: #4ADE80;       /* Primary Accent */
            --color-slate-950: #020617;         /* Headings, Strong Text */
            --color-grey: #4B5563;              /* Paragraph Text */
            --color-light-grey: #F3F4F6;        /* Body Background */
            --color-white: #FFFFFF;
            --color-yellow-accent: #FBBF24;     /* Tag Line */
        }

        /* --- GLOBAL & BASE STYLES --- 
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-light-grey);
            line-height: 1.6;
            margin: 0;
            padding: 20px;
        }
*/
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 6rem; /* Spacing between sections */
        }

        /* --- PREMIUM SECTION STYLING --- */
        .future-frontiers-mod,
        .join-conversation-mod {
            background-color: var(--color-white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); /* Stronger, softer shadow */
            transition: box-shadow 0.3s ease;
        }
        .future-frontiers-mod:hover,
        .join-conversation-mod:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); /* Subtle hover effect */
        }

        .content-grid {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            align-items: center;
        }

        h2 {
            font-size: clamp(2rem, 5vw, 2.5rem);
            font-weight: 800;
            color: var(--color-slate-950);
            margin-bottom: 1rem;
        }

        p {
            color: var(--color-grey);
            font-size: 1.1rem;
        }

        /* --- DESKTOP LAYOUT (Equal Height Columns) --- */
        @media (min-width: 1024px) {
            .future-frontiers-mod,
            .join-conversation-mod {
                padding: 60px;
            }
            .content-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 50px;
                /* Crucial for equal height: Align-items: stretch combined with grid */
                align-items: stretch;
            }
            
            /* Reverse the order for the second section */
            .join-conversation-mod .conversation-content { order: 1; }
            .join-conversation-mod .conversation-image { order: 2; }
        }

        /* --- 1. FUTURE FRONTIERS STYLING --- */
        .future-frontiers-mod .tag-line {
            display: flex;
            align-items: center;
            color: var(--color-slate-950); 
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        .future-frontiers-mod .tag-line .line {
            display: inline-block;
            width: 3rem;
            height: 3px;
            background-color: var(--color-yellow-accent); /* Yellow accent */
            margin-right: 0.75rem;
            border-radius: 9999px;
        }
        
        /* List Styling */
        .future-frontiers-mod .future-points {
            list-style: none;
            padding: 0;
            margin-top: 2rem;
        }
        .future-frontiers-mod .future-points li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            color: var(--color-slate-950);
            font-weight: 500;
            transition: transform 0.2s ease;
        }
        .future-frontiers-mod .future-points li:hover {
            transform: translateX(5px);
        }
        .future-frontiers-mod .future-points li::before {
            content: '\f058'; /* Checkmark icon from Font Awesome */
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--color-light-green);
            font-size: 1.1rem;
        }

        /* --- 2. JOIN CONVERSATION STYLING --- */
        .conversation-image img,
        .future-image-wrapper img {
            width: 100%;
            height: 100%; /* Ensures it fills the grid cell height */
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Image Bounce Animation */
        @keyframes bounce-slow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .image-float {
            animation: bounce-slow 6s ease-in-out infinite;
        }

        /* Contact Actions (Buttons) Layout */
        .contact-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 2rem;
        }
        @media (min-width: 640px) {
            .contact-actions {
                flex-direction: row;
            }
        }

        /* --- PREMIUM CTA BUTTONS (Light Green & Slate 950) --- */
        .premium-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 25px;
            font-weight: 700;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            font-size: 1rem;
        }

        /* Call Button (Slate 950 with light green hover) */
        .call-btn {
            background-color: var(--color-slate-950);
            color: var(--color-white);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        .call-btn:hover {
            background-color: var(--color-light-green);
            color: var(--color-slate-950);
            box-shadow: 0 8px 25px rgba(74, 222, 128, 0.6);
            transform: translateY(-2px);
        }

        /* WhatsApp Button (Light Green with Dark Text) */
        .whatsapp-btn {
            background: var(--color-light-green);
            color: var(--color-slate-950);
            box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
            flex-direction: column; /* Allows status text below icon */
            height: auto; /* Required for column layout */
        }
        .whatsapp-btn:hover {
            background-color: #38C172; /* Slightly darker green on hover */
            box-shadow: 0 8px 25px rgba(74, 222, 128, 0.8);
            transform: translateY(-2px);
        }

        .whatsapp-btn .icon-text {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }

        /* Online Status Pulse */
        @keyframes pulse-dot {
            0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
            70% { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
            100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
        }
        .online-dot {
            width: 8px;
            height: 8px;
            background-color: var(--color-light-green);
            border-radius: 50%;
            margin-right: 5px;
            animation: pulse-dot 2s infinite;
            display: inline-block;
        }
        .online-status {
            font-size: 0.8rem;
            color: var(--color-slate-950);
            font-weight: 500;
        }
        
        /* Discover Button on Image */
        .btn-discover {
            position: absolute;
            top: 95%;
            left: 64%;
            transform: translate(-50%, -50%);
            padding: 12px 28px;
            background-color: var(--color-light-green);
            color: var(--color-slate-950);
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(74, 222, 128, 0.5);
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .btn-discover:hover {
            background-color: #38C172;
            box-shadow: 0 12px 30px rgba(74, 222, 128, 0.7);
            transform: translate(-50%, -50%) scale(1.05);
        }

        /* --- SCROLL ANIMATION CSS --- */
        /* Initial state: Hidden and slightly offset down */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
            /* Ensures transition occurs only once */
            will-change: opacity, transform; 
        }

        /* Final state: Fully visible and in place */
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
                /* --- BRAND COLORS & VARIABLES --- */
        :root {
            --color-light-green: #4ADE80;       /* Primary Accent */
            --color-slate-950: #020617;         /* Headings, Strong Text */
            --color-white: #FFFFFF;
            --color-grey: #4B5563;              /* Paragraph Text */
        }

        /* --- LAYOUT AND CONTAINER STYLES --- 
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-white);
            padding: 40px;
        }
*/
        .contact-actions {
            display: flex;
            flex-direction: column;
            gap: 20px; /* Increased gap */
            margin-top: 2rem;
            max-width: 600px;
        }
        
        @media (min-width: 640px) {
            .contact-actions {
                flex-direction: row;
                gap: 30px; /* Larger gap on desktop */
            }
        }

        /* --- PREMIUM BASE BUTTON STYLE --- */
        .premium-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px 30px; /* Generous padding */
            flex: 1;
            font-weight: 700;
            text-decoration: none;
            border-radius: 16px; /* Super rounded corners */
            letter-spacing: 0.05em; /* Subtle refinement */
            transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1); /* Slower, smoother transition */
            position: relative;
            overflow: hidden;
            border: 2px solid transparent; /* Prepare for border hover */
        }
        
        /* Icon Size and Spacing for Call Button */
        .call-btn i {
            font-size: 1.35rem; /* Larger icon */
            margin-right: 12px; /* Increased spacing for better separation */
        }

        /* --- 1. CALL BUTTON (Slate 950) --- */
        .call-btn {
            background-color: var(--color-slate-950);
            color: var(--color-white);
            /* Deep, layered shadow for premium effect */
            box-shadow: 
                0 6px 15px rgba(2, 6, 23, 0.5), /* Darker core shadow for more pop */
                0 0 0 1px rgba(255, 255, 255, 0.1); 
        }

        .call-btn:hover {
            background-color: var(--color-light-green); /* Hover color switch */
            color: var(--color-slate-950);
            transform: translateY(-4px); 
            /* Enhanced Green glow shadow */
            box-shadow: 
                0 10px 30px rgba(74, 222, 128, 0.9), /* Deeper glow */
                0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        /* --- 2. WHATSAPP BUTTON (Light Green) --- */
        .whatsapp-btn {
            background: var(--color-light-green);
            color: var(--color-slate-950);
            flex-direction: column; 
            height: auto; 
            /* Light, floating shadow */
            box-shadow: 0 6px 15px rgba(74, 222, 128, 0.5); /* Stronger lift shadow */
            font-weight: 600; 
        }
        
        .whatsapp-btn:hover {
            background-color: var(--color-white); 
            border-color: var(--color-light-green); 
            transform: translateY(-4px); 
            box-shadow: 
                0 10px 30px rgba(74, 222, 128, 0.9), /* Deeper glow */
                0 0 0 3px var(--color-light-green); 
        }

        .whatsapp-btn .icon-text {
            display: flex;
            align-items: center;
            margin-bottom: 8px; /* Slightly more space between main text and status */
            font-size: 1.15rem; /* Slightly larger main text */
        }

        /* WhatsApp Icon Size and Spacing */
        .whatsapp-btn .icon-text i {
            font-size: 1.5rem; /* Largest icon for maximum impact */
            margin-right: 12px; /* Increased spacing */
        }

        /* Online Status Pulse */
        @keyframes pulse-dot {
            0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
            70% { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
            100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
        }
        .online-dot {
            width: 8px;
            height: 8px;
            background-color: var(--color-light-green);
            border-radius: 50%;
            margin-right: 8px; /* Increased space after the dot */
            animation: pulse-dot 2s infinite;
            display: inline-block;
        }
        .online-status {
            font-size: 0.9rem;
            color: var(--color-slate-950);
            font-weight: 500;
            opacity: 0.9; /* Increased opacity for clarity */
        }
        .footer-about p {
 font-size: 0.95rem;
  color: #e5e5e5;
} 
        .footer-bottom p {
color: #FFFFFF;
font-size: 0.9rem; 
        }
        .footer-newsletter p{
            color: #FFFFFF;
            font-size: 0.9rem;
        }