    .hero-title-bg {
        background: #fffbe9;
        display: inline-block;
        padding: 0.5em 1em;
        border-radius: 1em;
        box-shadow: 0 2px 8px #ffd33a33;
    }

    .footer-contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 0.5rem;
    }

    .footer-contact-item {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        color: #9ca3af;
        font-size: 1rem;
    }

    .footer-contact-item i {
        color: #1e90b8;
        font-size: 1.1rem;
        min-width: 18px;
    }

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

    html {
        height: 100%;
        width: 100%;
        position: static;
        /* Remove sticky positioning to prevent overlap */
        top: auto;
        z-index: auto;

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: #fffbe9cc;
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            border-bottom: 2px solid #FFD33A;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-foam .logo-f {
            color: #404548;
        }

        .logo-foam .logo-o {
            color: #F36A13;
        }

        .logo-foam .logo-a {
            color: #FFD33A;
        }

        .logo-foam .logo-m {
            color: #F56B76;
        }

        .logo-group {
            color: #404548;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1rem;
        }

        .nav-link {
            text-decoration: none;
            color: #404548;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #F36A13;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #FFD33A;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #f9f9f6 60%, #fffbe9 100%);
            display: flex;
            align-items: center;
            color: #404548;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.1;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 20px 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background: #F36A13;
            color: #fff;
            border: 2px solid #F36A13;
        }

        .btn-primary:hover {
            background: #FFD33A;
            color: #404548;
            border: 2px solid #FFD33A;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
        }

        .btn-secondary {
            background: transparent;
            color: #F36A13;
            border: 2px solid #F36A13;
        }

        .btn-secondary:hover {
            background: #F56B76;
            color: #fff;
            border: 2px solid #F56B76;
            transform: translateY(-2px);
        }

        .hero-image {
            position: relative;
            height: 400px;
            animation: fadeInRight 1s ease 0.6s both;
        }

        /* Floating CTA cards removed; placeholder visual used instead. */

        /* Services Section */
        .services {
            padding: 1.5rem 0 5rem 0;
            background: linear-gradient(120deg, #f8fafc 70%, #f3f4f6 100%);
            margin-top: 0 !important;
            /* No extra space above services section */
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            position: static;
            top: auto;
            z-index: auto;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #F36A13;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        /* New modern investment cards */
        .investment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.75rem;
        }

        .investment-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
            border-radius: 16px;
            padding: 1.6rem;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
            border: 1px solid rgba(15, 23, 42, 0.04);
            transition: transform 0.35s cubic-bezier(.2, .9, .2, 1), box-shadow 0.35s;
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
        }

        .investment-card:hover {
            transform: translateY(-10px) scale(1.01);
            box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
        }

        .investment-card .card-media {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .service-icon {
            width: 68px;
            height: 68px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            background: linear-gradient(135deg, #F36A13, #FFD33A);
            box-shadow: 0 6px 18px rgba(243, 106, 19, 0.16);
        }

        .card-badge {
            background: rgba(243, 106, 19, 0.08);
            color: #F36A13;
            font-weight: 700;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 0.85rem;
        }

        .investment-card h3 {
            margin: 0.35rem 0 0.1rem 0;
            color: #1f2937;
            font-size: 1.15rem;
        }

        .investment-card p {
            color: #6b7280;
            line-height: 1.5;
            margin-bottom: 0.45rem;
            flex: 1 1 auto;
        }

        .card-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .card-tags span {
            background: rgba(30, 144, 184, 0.08);
            color: #0ea5a4;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 600;
        }

        .card-cta {
            margin-top: 0.6rem;
            align-self: flex-start;
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 0.9rem;
        }

        /* Decorative gradient backgrounds for select cards (subtle) */
        .investment-card:nth-child(1) {
            background-image: linear-gradient(180deg, rgba(243, 106, 19, 0.03), rgba(255, 255, 255, 0));
        }

        .investment-card:nth-child(2) {
            background-image: linear-gradient(180deg, rgba(37, 99, 235, 0.02), rgba(255, 255, 255, 0));
        }

        .investment-card:nth-child(3) {
            background-image: linear-gradient(180deg, rgba(34, 197, 94, 0.02), rgba(255, 255, 255, 0));
        }

        /* Responsive adjustments */
        @media (max-width: 980px) {
            .investment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .investment-grid {
                grid-template-columns: 1fr;
            }

            .service-icon {
                width: 58px;
                height: 58px;
            }
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FFD33A, #F56B76);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 2px 8px #ffd33a33;
        }

        .service-icon i {
            font-size: 2rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #F36A13;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: linear-gradient(120deg, #fff 60%, #f9f9f6 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* Redesigned About section styles */
        .about-text h2 {
            font-size: 2.25rem;
            color: #0f172a;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .about-text .lead {
            font-size: 1.15rem;
            color: #374151;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .about-highlights {
            display: flex;
            gap: 1rem;
            margin: 1.25rem 0 1.5rem 0;
            flex-wrap: wrap;
        }

        .about-highlights .highlight {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            background: rgba(15, 23, 42, 0.03);
            padding: 0.7rem 0.9rem;
            border-radius: 12px;
            min-width: 200px;
        }

        .about-highlights .icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, #F36A13, #FFD33A);
            color: white;
            font-size: 1.05rem;
        }

        .about-highlights .highlight-text h4 {
            margin: 0;
            font-size: 0.98rem;
            color: #0f172a;
        }

        .about-highlights .muted {
            color: #6b7280;
            margin: 0;
            font-size: 0.9rem;
        }

        .stats {
            display: flex;
            gap: 1.75rem;
            margin-top: 1.5rem;
        }

        .stat {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
            padding: 0.85rem 1.1rem;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
        }

        .stat h3 {
            margin: 0;
            font-size: 1.5rem;
            color: #F36A13;
        }

        .stat p {
            margin: 0;
            font-size: 0.9rem;
            color: #6b7280;
        }

        .about-ctas {
            margin-top: 1.6rem;
            display: flex;
            gap: 0.9rem;
        }

        .about-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .visual-panel {
            position: relative;
            width: 100%;
            max-width: 420px;
            height: 340px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
            background: linear-gradient(135deg, #f8fafc, #fff);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-main {
            width: 70%;
            height: auto;
            border-radius: 8px;
            filter: saturate(1.05) contrast(1.02);
        }

        .mosaic-cards {
            position: absolute;
            right: 14px;
            top: 18px;
            display: grid;
            gap: 10px;
            grid-auto-rows: min-content;
        }

        .mosaic-card {
            background: white;
            padding: 10px 12px;
            border-radius: 10px;
            min-width: 120px;
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
        }

        .mosaic-card.small {
            min-width: 88px;
            padding: 8px 10px;
            transform: translateX(6px);
        }

        .mosaic-card.alt {
            background: linear-gradient(135deg, #f8fafc, #fff);
            border: 1px solid rgba(15, 23, 42, 0.03);
        }

        .mosaic-card h5 {
            margin: 0;
            font-size: 0.95rem;
            color: #0f172a;
        }

        .muted-small {
            color: #6b7280;
            font-size: 0.78rem;
            margin: 0;
        }

        .avatar-stack {
            position: absolute;
            left: 18px;
            bottom: 18px;
            display: flex;
            align-items: center;
        }

        .avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 3px solid white;
            object-fit: cover;
            box-shadow: 0 6px 18px rgba(2, 6, 23, 0.12);
            margin-left: -12px;
        }

        @media (max-width: 980px) {
            .about-content {
                grid-template-columns: 1fr;
            }

            .visual-panel {
                max-width: 100%;
                width: 100%;
                height: 300px;
            }

            .mosaic-cards {
                right: 12px;
                top: 12px;
            }
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: #F56B76;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: #6b7280;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
        }

        .stat h3 {
            font-size: 2.5rem;
            color: #F36A13;
            font-weight: bold;
        }

        .stat p {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .about-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-placeholder {
            width: 400px;
            height: 300px;
            background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #6b7280;
        }

        .image-placeholder i {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 0;
            background: #f8fafc;
        }

        .contact-content {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            min-height: 250px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;

            .contact-info {
                display: flex;
                flex-direction: row;
                gap: 2.5rem;
                justify-content: center;
                align-items: stretch;
                width: 100%;
                max-width: 1000px;
            }

            .contact-item {
                flex: 1 1 0;
                min-width: 220px;
                max-width: 350px;
                background: #fff;
                border-radius: 12px;
                box-shadow: 0 2px 12px rgba(30, 144, 184, 0.07);
                padding: 2rem 1.5rem;
                display: flex;
                align-items: flex-start;
                gap: 1rem;
                margin-bottom: 0;
                justify-content: center;
            }

            @media (max-width: 900px) {
                .contact-content {
                    flex-direction: column;
                }

                .contact-info {
                    flex-direction: column;
                    gap: 1.5rem;
                    align-items: center;
                }

                .contact-item {
                    max-width: 100%;
                }
            }

            margin-top: 0.5rem;
        }

        .contact-item h4 {
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .contact-item p {
            color: #6b7280;
        }

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e90b8;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #f4f1ed 70%, #e9e6e2 100%);
            color: #404548;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .footer-section p {
            color: #9ca3af;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: #FFD33A;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #F36A13;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: #F56B76;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #FFD33A;
            color: #404548;
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 1rem;
            text-align: center;
            color: #9ca3af;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float-random {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            20% {
                transform: translate(-10px, -15px) rotate(-2deg);
            }

            40% {
                transform: translate(15px, -10px) rotate(3deg);
            }

            60% {
                transform: translate(-12px, 12px) rotate(-3deg);
            }

            80% {
                transform: translate(10px, 10px) rotate(2deg);
            }

            100% {
                transform: translate(0, 0) rotate(0deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 1.5rem 0 5rem 0;
                background: #f8fafc;
                margin-top: 0 !important;

                .nav-menu.active {
                    left: 0;
                }

                .nav-toggle {
                    display: flex;
                }

                .hero-container {
                    grid-template-columns: 1fr;
                    text-align: center;
                    gap: 2rem;
                }

                .hero-title {
                    font-size: 2.5rem;
                }

                .hero-buttons {
                    justify-content: center;
                    flex-wrap: wrap;
                }

                .about-content {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }

                .contact-content {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }

                .footer-content {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                    text-align: center;
                }

                .stats {
                    justify-content: center;
                }

                .services-grid {
                    grid-template-columns: 1fr;
                }

                .image-placeholder {
                    width: 100%;
                    max-width: 300px;
                }
            }

            @media (max-width: 480px) {
                .hero-title {
                    font-size: 2rem;
                }

                .hero-subtitle {
                    font-size: 1rem;
                }

                .btn {
                    padding: 10px 20px;
                    font-size: 0.9rem;
                }

                .section-header h2 {
                    font-size: 2rem;
                }

                .service-card {
                    padding: 2rem;
                }
            }
        }
    }