        :root {
            --primary: #00BCD4; /* Cyan/Turquoise */
            --primary-light: #4DD0E1;
            --primary-dark: #0097A7;
            --secondary: #1A237E; /* Dark Navy */
            --secondary-light: #283593;
            --secondary-dark: #121858;
            --bg-light: #F4F9FA; /* Soft cyan-tinted white for background */
            --text-dark: #0D113F; /* Deeper navy for text */
            --text-muted: #5C677D;
            --white: #FFFFFF;
            --card-bg: rgba(255, 255, 255, 0.9);
            --gradient-accent: linear-gradient(135deg, var(--primary), var(--secondary));
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-pill: 9999px;
            --shadow-sm: 0 4px 6px rgba(26, 35, 126, 0.05);
            --shadow-md: 0 10px 30px rgba(26, 35, 126, 0.08);
            --shadow-lg: 0 20px 40px rgba(0, 188, 212, 0.15);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            color: var(--secondary);
            line-height: 1.2;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 100px 0;
            position: relative;
        }

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

        .mb-2 { margin-bottom: 8px; }
        .mb-4 { margin-bottom: 16px; }
        .mb-6 { margin-bottom: 24px; }
        .mb-8 { margin-bottom: 32px; }
        .mb-12 { margin-bottom: 48px; }
        
        .mt-8 { margin-top: 32px; }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--radius-pill);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
            transform: translateX(-100%);
            transition: 0.6s;
            z-index: -1;
        }

        .btn:hover::before {
            transform: translateX(100%);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
        }
        
        .btn-secondary {
            background: var(--white);
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background: rgba(0, 188, 212, 0.05);
        }

        /* Badge */
        .badge {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            font-family: 'Outfit', sans-serif;
            font-size: 0.875rem;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 188, 212, 0.3);
            margin-bottom: 16px;
        }

        .badge-circle {
            width: 80px;
            height: 80px;
            background: var(--secondary);
            border: 3px solid var(--primary);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            line-height: 1.1;
            font-size: 0.85rem;
            text-align: center;
            box-shadow: var(--shadow-lg);
            position: absolute;
            z-index: 10;
            animation: float-badge 6s ease-in-out infinite;
        }
        
        .badge-circle span {
            color: var(--primary);
        }

        @keyframes float-badge {
            0% { transform: translateY(0) rotate(5deg); }
            50% { transform: translateY(-10px) rotate(-5deg); }
            100% { transform: translateY(0) rotate(5deg); }
        }

        /* Background Effects */
        .bg-mesh {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(at 0% 0%, rgba(0, 188, 212, 0.1) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(26, 35, 126, 0.05) 0px, transparent 50%);
            z-index: -2;
            pointer-events: none;
        }

        /* Setup Particles */
        #particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0, 188, 212, 0.4), rgba(0, 188, 212, 0.1));
            backdrop-filter: blur(2px);
            animation: float-up linear infinite;
            opacity: 0;
            animation-fill-mode: both;
        }

        @keyframes float-up {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-20vh) scale(1.5);
                opacity: 0;
            }
        }

        /* Navbar */
        .navbar {
            padding: 20px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            padding: 15px 0;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.75rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .logo-placeholder {
            width: 200px;
            height: 40px;
            background: rgba(0,0,0,0.05);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: #999;
            border: 1px dashed #ccc;
        }

        .logo .ai-start {
            color: var(--primary);
        }
        .logo .text-main {
            color: var(--secondary);
        }
        .logo .ai-end {
            color: var(--primary);
        }
        
        .logo-arc {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120%;
            height: 30px;
            border-top: 2px dashed rgba(0, 188, 212, 0.4);
            border-radius: 50% 50% 0 0;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-link {
            font-weight: 500;
            color: var(--secondary);
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--secondary);
        }

        /* Hero Section */
        .hero {
            padding: 160px 0 100px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(3rem, 5vw, 4.5rem);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hero h1 span {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-banner-placeholder {
            margin-top: 60px;
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, rgba(230,240,255,0.8), rgba(240,250,255,0.4));
            border-radius: var(--radius-lg);
            border: 2px dashed rgba(0, 188, 212, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-family: 'Outfit', sans-serif;
            position: relative;
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }
        
        .hero-banner-placeholder .badge-circle {
            top: 30px;
            left: 30px;
        }

        .banner-mockup {
            width: 80%;
            height: 80%;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            display: flex;
            overflow: hidden;
        }
        
        .banner-mockup-left {
            width: 30%;
            background: var(--secondary);
            padding: 20px;
        }
        
        .banner-mockup-right {
            width: 70%;
            padding: 20px;
            position: relative;
        }
        
        .mockup-shape {
            position: absolute;
            background: rgba(0, 188, 212, 0.1);
            border-radius: 50%;
        }

        /* Empathy / Pain Points Section */
        .pain-points {
            background-color: var(--white);
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: 16px;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .empathy-card {
            background: var(--bg-light);
            padding: 40px 30px;
            border-radius: var(--radius-lg);
            transition: var(--transition);
            position: relative;
            z-index: 1;
            border: 1px solid rgba(0, 188, 212, 0.1);
        }

        .empathy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--white), var(--bg-light));
            border-radius: var(--radius-lg);
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .empathy-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .empathy-card:hover::before {
            opacity: 1;
        }

        .icon-box {
            width: 64px;
            height: 64px;
            background: rgba(0, 188, 212, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--primary);
            transition: var(--transition);
        }

        .empathy-card:hover .icon-box {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.1) rotate(5deg);
        }
        
        .empathy-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .empathy-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Solutions Section */
        .solutions {
            background-color: var(--bg-light);
            position: relative;
        }

        .solution-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(26, 35, 126, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .solution-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(0, 188, 212, 0.2);
        }

        .solution-header {
            padding: 30px 30px 0;
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .solution-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            flex-shrink: 0;
        }
        
        .solution-icon.ai { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
        .solution-icon.social { background: linear-gradient(135deg, #0288D1, #01579B); }

        .solution-card h3 {
            font-size: 1.35rem;
            margin: 0;
        }

        .solution-body {
            padding: 0 30px 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .solution-body p {
            color: var(--text-muted);
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .feature-list {
            margin-bottom: 24px;
        }
        
        .feature-list li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: var(--text-dark);
        }
        
        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* Why Us Section */
        .why-us {
            background-color: var(--white);
            overflow: hidden;
        }

        .split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-us-content ul {
            margin-top: 30px;
        }

        .why-us-content li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .check-icon {
            width: 24px;
            height: 24px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .why-us-content h4 {
            font-size: 1.1rem;
            margin-bottom: 4px;
            color: var(--secondary);
        }

        .why-us-content p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .visual-block {
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, rgba(244, 249, 250, 0.8), rgba(0, 188, 212, 0.05));
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0, 188, 212, 0.1);
        }

        .visual-block::after {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px dashed rgba(0, 188, 212, 0.3);
            border-radius: var(--radius-lg);
            z-index: -1;
        }
        
        .mockup-ui {
            width: 80%;
            height: 70%;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .mockup-header {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        
        .mockup-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.1);
        }
        
        .mockup-lines {
            flex-grow: 1;
        }
        
        .mockup-line {
            height: 8px;
            background: rgba(0,0,0,0.05);
            border-radius: 4px;
            margin-bottom: 6px;
        }
        
        .mockup-line:last-child { width: 60%; }
        
        .mockup-card {
            background: var(--bg-light);
            border-radius: 8px;
            padding: 16px;
            flex-grow: 1;
        }

        /* Testimonials */
        .testimonials {
            background: var(--secondary);
            color: var(--white);
            position: relative;
        }

        .testimonials .section-header h2 {
            color: var(--white);
        }
        
        .testimonials .section-header p {
            color: rgba(255,255,255,0.7);
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: var(--radius-lg);
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 4rem;
            color: rgba(0, 188, 212, 0.2);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
            color: rgba(255, 255, 255, 0.9);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-family: 'Outfit', sans-serif;
        }

        .author-info h5 {
            color: var(--white);
            margin: 0;
            font-size: 1rem;
        }

        .author-info p {
            color: var(--primary-light);
            font-size: 0.85rem;
            margin: 0;
        }

        /* Testimonial Slider System */
        .testimonial-slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .testimonial-slider-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 30px; /* Note: gap does not work well safely with raw transforms, standardizing width */
            /* We will use CSS variables and calc to make margins robust */
        }
        
        .testimonial-slide {
            flex: 0 0 100%; /* Default mobile: 1 per view */
            width: 100%;
            padding: 0 15px; /* Replace grid gap with padding on slides */
            box-sizing: border-box;
        }
        
        @media (min-width: 768px) {
            .testimonial-slide {
                flex: 0 0 50%; /* Desktop: 2 per view */
            }
        }
        
        .testimonial-slider-track {
            gap: 0; /* Remove gap, we use padding on slide items now */
        }

        .slider-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-top: 40px;
        }

        .slider-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-btn:hover:not(:disabled) {
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.05);
        }

        .slider-dots {
            display: flex;
            gap: 12px;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--bg-light), var(--white));
            text-align: center;
        }

        .cta-box {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 60px 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(0, 188, 212, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 188, 212, 0.05) 0%, transparent 60%);
            z-index: 0;
            pointer-events: none;
        }

        .cta-box h2, .cta-box p, .newsletter-form, .cta-meta {
            position: relative;
            z-index: 1;
        }

        .cta-box h2 {
            font-size: clamp(2rem, 3.5vw, 2.5rem);
            margin-bottom: 16px;
        }

        .cta-box p {
            color: var(--text-muted);
            margin-bottom: 32px;
            font-size: 1.1rem;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 500px;
            margin: 0 auto;
        }

        @media (min-width: 576px) {
            .newsletter-form {
                flex-direction: row;
            }
        }

        .form-input {
            flex-grow: 1;
            padding: 14px 24px;
            border: 2px solid rgba(26, 35, 126, 0.1);
            border-radius: var(--radius-pill);
            font-family: inherit;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }

        .form-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
        }

        .cta-meta {
            margin-top: 24px;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .icon-check-small {
            color: var(--primary);
        }
        
        .badge-inline {
            background: rgba(0, 188, 212, 0.1);
            color: var(--primary-dark);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        /* Footer */
        .footer {
            background: var(--bg-light);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(26, 35, 126, 0.05);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            margin-bottom: 40px;
        }

        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-links {
            display: flex;
            gap: 24px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-icons {
            display: flex;
            gap: 16px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .social-icon:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(26, 35, 126, 0.1);
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Animations */
        @keyframes pulse-btn {
            0% { box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.7); transform: scale(1); }
            70% { box-shadow: 0 0 0 15px rgba(0, 188, 212, 0); transform: scale(1.02); }
            100% { box-shadow: 0 0 0 0 rgba(0, 188, 212, 0); transform: scale(1); }
        }
        .btn-pulse {
            animation: pulse-btn 2.5s infinite;
        }
        .btn-pulse:hover {
            animation: none;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }

        /* Responsive */
        @media (max-width: 992px) {
            .split-layout {
                grid-template-columns: 1fr;
            }
            .why-us-content {
                order: 1;
            }
            .visual-block {
                order: 2;
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .grid-3, .grid-2 {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 120px 0 60px;
            }
            
            .section {
                padding: 60px 0;
            }
        }
