:root {
            --color1: #0098ff;
            --color2: #6bb5ff;
            --color3: #aed4ff;
            --color4: #e3f6ff;
            --color5: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            overflow-x: hidden;
            background: var(--color5);
            color: #1a1a1a;
        }
        
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background-color: var(--color5);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 152, 255, 0.1);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color1);
            letter-spacing: -0.5px;
        }
        
        .nav ul {
            display: flex;
            list-style-type: none;
            gap: 2.5rem;
        }
        
        .nav a {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color1);
            transition: width 0.3s ease;
        }
        
        .nav a:hover {
            color: var(--color1);
        }
        
        .nav a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            font-size: 30px;
            cursor: pointer;
            color: var(--color1);
        }
        
        .mobile-menu {
            visibility: hidden;
            opacity: 0;
            transform: translateY(-20px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
            background-color: var(--color5);
            padding: 2rem;
            position: fixed;
            top: 80px;
            right: 0;
            width: 280px;
            z-index: 999;
            box-shadow: -5px 5px 30px rgba(0, 152, 255, 0.15);
            border-left: 3px solid var(--color1);
        }
        
        .mobile-menu.active {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }
        
        .mobile-nav ul {
            list-style-type: none;
        }
        
        .mobile-nav li {
            margin: 1.5rem 0;
        }
        
        .mobile-nav a {
            color: #1a1a1a;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .mobile-nav a:hover {
            color: var(--color1);
        }
        
        @media (max-width: 768px) {
            .nav {
                display: none;
            }
            .burger {
                display: block;
            }
        }
        
        
        .hero-section {
            margin-top: 80px;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            width: 100%;
        }
        
        .hero-text {
            max-width: 650px;
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
            color: #1a1a1a;
        }
        
        .hero-title .highlight {
            color: var(--color1);
            position: relative;
            display: inline-block;
        }
        
        .hero-description {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            line-height: 1.7;
            margin-bottom: 3rem;
            color: #4a4a4a;
        }
        
        .hero-cta {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--color1);
            color: var(--color5);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 152, 255, 0.3);
        }
        
        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 152, 255, 0.4);
            background: var(--color2);
        }
        
        .decorative-circle {
            position: absolute;
            border-radius: 50%;
            background: var(--color3);
            opacity: 0.3;
        }
        
        .circle-1 {
            width: 400px;
            height: 400px;
            top: -200px;
            left: -100px;
        }
        
        .circle-2 {
            width: 250px;
            height: 250px;
            bottom: 10%;
            left: 40%;
            background: var(--color2);
        }
        
        
        .story-section {
            padding: 8rem 5%;
            background: var(--color5);
            position: relative;
        }
        
        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .story-image-wrapper {
            position: relative;
        }
        
        .story-image {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 152, 255, 0.15);
        }
        
        .decorative-box {
            position: absolute;
            width: 200px;
            height: 200px;
            border: 3px solid var(--color1);
            bottom: -30px;
            right: -30px;
            border-radius: 20px;
            z-index: -1;
        }
        
        .story-content h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 2rem;
            color: #1a1a1a;
        }
        
        .story-content p {
            font-size: 1.15rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
            color: #4a4a4a;
        }
        
        .stats-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--color1);
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 0.95rem;
            color: #666;
            font-weight: 500;
        }
        
        
        .services-section {
            padding: 8rem 5%;
            background: var(--color4);
            position: relative;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }
        
        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            line-height: 1.7;
            color: #4a4a4a;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }
        
        .service-item {
            background: var(--color5);
            padding: 3rem;
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--color1);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 152, 255, 0.2);
            border-color: var(--color3);
        }
        
        .service-item:hover::before {
            transform: scaleX(1);
        }
        
        .service-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--color3);
            margin-bottom: 1.5rem;
            display: block;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }
        
        .service-description {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
            margin-bottom: 2rem;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--color1);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            gap: 0.5rem;
        }
        
        .service-link::after {
            content: '→';
            margin-left: 0.5rem;
            transition: margin-left 0.3s ease;
        }
        
        
        .blog-section {
            padding: 8rem 5%;
            background: var(--color5);
            position: relative;
        }
        
        .blog-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
        }
        
        .blog-featured {
            position: relative;
        }
        
        .blog-featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 2rem;
        }
        
        .blog-category {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--color1);
            color: var(--color5);
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 20px;
            margin-bottom: 1.5rem;
        }
        
        .blog-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
            line-height: 1.3;
        }
        
        .blog-excerpt {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 2rem;
        }
        
        .blog-meta {
            display: flex;
            gap: 2rem;
            font-size: 0.95rem;
            color: #999;
        }
        
        .blog-sidebar {
            position: relative;
        }
        
        .sidebar-item {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--color4);
        }
        
        .sidebar-item:last-child {
            border-bottom: none;
        }
        
        .sidebar-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1rem;
        }
        
        .sidebar-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #1a1a1a;
            line-height: 1.4;
        }
        
        .sidebar-date {
            font-size: 0.9rem;
            color: #999;
        }
        
        
        .process-section {
            padding: 8rem 5%;
            background: var(--color4);
            position: relative;
            overflow: hidden;
        }
        
        .process-timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--color3);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            margin-bottom: 6rem;
            position: relative;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            order: 2;
        }
        
        .timeline-item:nth-child(even) .timeline-image {
            order: 1;
        }
        
        .timeline-content {
            padding: 2rem;
            background: var(--color5);
            border-radius: 15px;
            position: relative;
        }
        
        .timeline-step {
            font-size: 1rem;
            color: var(--color1);
            font-weight: 700;
            margin-bottom: 1rem;
            display: block;
        }
        
        .timeline-heading {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }
        
        .timeline-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #666;
        }
        
        .timeline-image-wrapper {
            position: relative;
        }
        
        .timeline-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 15px 50px rgba(0, 152, 255, 0.15);
        }
        
        
        .faq-section {
            padding: 8rem 5%;
            background: var(--color5);
            position: relative;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            border: 2px solid var(--color4);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--color3);
        }
        
        .faq-question {
            width: 100%;
            padding: 2rem;
            background: var(--color5);
            border: none;
            text-align: left;
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a1a1a;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--color4);
        }
        
        .faq-icon {
            font-size: 1.5rem;
            color: var(--color1);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: var(--color5);
        }
        
        .faq-answer-content {
            padding: 0 2rem 2rem 2rem;
            font-size: 1.05rem;
            line-height: 1.8;
            color: #666;
        }
        
        
        .contact-section {
            padding: 8rem 5%;
            background: var(--color4);
            position: relative;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 5rem;
            align-items: start;
        }
        
        .contact-form-wrapper {
            background: var(--color5);
            padding: 4rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 152, 255, 0.1);
        }
        
        .form-group {
            margin-bottom: 2rem;
        }
        
        .form-label {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }
        
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid var(--color4);
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--color1);
            box-shadow: 0 0 0 3px rgba(0, 152, 255, 0.1);
        }
        
        .form-textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .form-submit {
            width: 100%;
            padding: 1.2rem;
            background: var(--color1);
            color: var(--color5);
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .form-submit:hover {
            background: var(--color2);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 152, 255, 0.3);
        }
        
        .contact-info {
            position: relative;
        }
        
        .contact-info-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 3rem;
        }
        
        .contact-detail {
            margin-bottom: 2rem;
        }
        
        .contact-detail-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color1);
            margin-bottom: 0.5rem;
        }
        
        .contact-detail-text {
            font-size: 1.05rem;
            color: #666;
            line-height: 1.6;
        }
        
        
        .footer {
            background: #1a1a1a;
            color: var(--color5);
            padding: 5rem 5% 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }
        
        .footer-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color1);
            margin-bottom: 1.5rem;
        }
        
        .footer-description {
            font-size: 1rem;
            line-height: 1.7;
            color: #999;
            margin-bottom: 2rem;
        }
        
        .footer-heading {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--color5);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--color1);
        }
        
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .footer-copyright {
            color: #666;
            font-size: 0.95rem;
        }
        
        .footer-legal {
            display: flex;
            gap: 2rem;
        }
        
        .footer-legal a {
            color: #999;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .footer-legal a:hover {
            color: var(--color1);
        }
        
        
        @media (max-width: 1024px) {
            .story-grid,
            .blog-layout,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .timeline-item {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .timeline-item:nth-child(even) .timeline-content,
            .timeline-item:nth-child(even) .timeline-image {
                order: unset;
            }
            
            .timeline-line {
                display: none;
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero-bg {
                width: 100%;
                opacity: 0.3;
            }
            
            .stats-wrapper {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-form-wrapper {
                padding: 2rem;
            }
        }
        
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .slide-left.active {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .slide-right.active {
            opacity: 1;
            transform: translateX(0);
        }
