@charset "UTF-8";

:root {
            --primary-color: #FF7A3D;
            --secondary-color: #FF9D5C;
            --dark-color: #1A1A1A;
            --light-bg: #FAF7F3;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* Navbar */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-brand i {
            font-size: 1.8rem;
        }

        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 0.6rem 1.5rem;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            background-color: #E56A2D;
            border-color: #E56A2D;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 122, 61, 0.3);
        }

        .btn-outline-custom {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            font-weight: 600;
            padding: 0.6rem 1.5rem;
            border-radius: 0.5rem;
            background-color: transparent;
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Hero Section */
        .hero-section {
            background-color: var(--light-bg);
            padding: 6rem 0;
            min-height: 500px;
            display: flex;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--dark-color);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
        }

        .feature-card-hero {
            background-color: white;
            border: 3px solid var(--primary-color);
            border-radius: 1.5rem;
            padding: 2.5rem;
            box-shadow: 0 8px 24px rgba(255, 122, 61, 0.15);
            max-width: 450px;
            width: 100%;
        }

        .feature-card-hero .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .feature-card-hero .feature-item:last-child {
            margin-bottom: 0;
        }

        .feature-card-hero i {
            font-size: 1.8rem;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .feature-card-hero h6 {
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: var(--dark-color);
        }

        .feature-card-hero p {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
        }

        /* Why Choose Section */
        .why-choose-section {
            padding: 6rem 0;
            background-color: white;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 4rem;
            color: var(--dark-color);
        }

        .feature-box {
            background-color: var(--light-bg);
            border-radius: 1rem;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.1);
            background-color: white;
        }

        .feature-box i {
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem;
            background-color: var(--primary-color);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-box h5 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .feature-box p {
            color: #666;
            font-size: 0.95rem;
        }

        /* How It Works Section */
        .how-it-works {
            background-color: var(--light-bg);
            padding: 6rem 0;
        }

        .steps-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .step-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            align-items: flex-start;
        }

        .step-number {
            background-color: var(--primary-color);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .step-content h5 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }

        .step-content p {
            color: #666;
            margin: 0;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 5rem 0;
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .btn-cta {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            padding: 0.8rem 2rem;
            border-radius: 0.5rem;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            color: var(--primary-color);
        }

        /* Footer */
        footer {
            background-color: #f8f8f8;
            padding: 3rem 0 1rem;
            border-top: 1px solid #e0e0e0;
        }

        footer .row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        footer .col-md-3:first-child {
            grid-column: 1 / -1;
            margin-bottom: 2rem;
        }

        footer h6 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
        }

        footer a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--primary-color);
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .footer-brand i {
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        .footer-brand-text {
            color: var(--dark-color);
            font-weight: 700;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #e0e0e0;
            color: #999;
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-section {
                padding: 3rem 0;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .btn-primary-custom, .btn-outline-custom {
                text-align: center;
            }

            .hero-image {
                margin-top: 2rem;
                min-height: 300px;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .step-item {
                gap: 1rem;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }
        }