:root {
            --primary-red: #c62828;
            --light-red: #ff5252;
            --dark-red: #8e0000;
            --primary-orange: #f57c00;
            --light-orange: #ff9800;
            --dark-orange: #bb4d00;
            --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 100%);
            --gradient-light: linear-gradient(135deg, var(--light-red) 0%, var(--light-orange) 100%);
            --text-dark: #333;
            --text-light: #fff;
            --bg-light: #f9f9f9;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-red);
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--primary-orange);
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-red);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--primary-red);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
			background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('../bg.jpg') center/cover no-repeat;
            color: var(--text-light);
            padding: 150px 0 100px;
            text-align: center;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23ffffff" opacity="0.05" d="M0,0 L100,0 L100,100 Z"></path></svg>');
            background-size: cover;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .hero-highlight {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 30px;
            margin: 20px 0;
            font-size: 1.2rem;
            backdrop-filter: blur(5px);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--text-light);
            color: var(--primary-red);
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 2px solid transparent;
        }
        
        .cta-button:hover {
            background: transparent;
            color: var(--text-light);
            border-color: var(--text-light);
            transform: translateY(-5px);
        }
        
        /* Sections Common Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.3rem;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: var(--gradient-primary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }
        
        /* Benefits Section */
        .benefits {
            background: var(--bg-light);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .benefit-item {
            background: var(--text-light);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 5px solid var(--primary-red);
        }
        
        .benefit-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .benefit-item h3 {
            color: var(--primary-red);
            display: flex;
            align-items: center;
            font-size: 1.3rem;
        }
        
        .benefit-item i {
            margin-right: 10px;
            color: var(--primary-orange);
        }
        
        .benefit-item ul {
            list-style: none;
            margin-top: 15px;
        }
        
        .benefit-item li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: flex-start;
        }
        
        .benefit-item li:last-child {
            border-bottom: none;
        }
        
        .benefit-item li i {
            color: #4CAF50;
            margin-right: 10px;
            margin-top: 5px;
            font-size: 0.9rem;
        }
        
        /* Timeline Section */
        .timeline {
		    background: url('../bg2.jpg') center/cover no-repeat;
            position: relative;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 160px;
            bottom: 100px;
            width: 2px;
            background: var(--gradient-primary);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 50px;
            position: relative;
        }
        
        .timeline-item:nth-child(odd) {
            justify-content: flex-start;
        }
        
        .timeline-item:nth-child(even) {
            justify-content: flex-end;
        }
        
        .timeline-content {
            width: 45%;
            background: var(--text-light);
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            border-left: 5px solid var(--primary-red);
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            border-right: 5px solid var(--primary-orange);
        }
        
        .timeline-content::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--gradient-primary);
            border-radius: 50%;
            top: 30px;
        }
        
        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -12px;
        }
        
        .timeline-item:nth-child(even) .timeline-content::before {
            left: -12px;
        }
        
        .timeline-icon {
            position: absolute;
            top: 25px;
            background: var(--text-light);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-red);
            box-shadow: var(--shadow);
            z-index: 1;
        }
        
        .timeline-item:nth-child(odd) .timeline-icon {
            right: -25px;
        }
        
        .timeline-item:nth-child(even) .timeline-icon {
            left: -25px;
        }
        
        /* Guarantee Section */
        .guarantee {
            background: var(--gradient-light);
            color: var(--text-light);
            text-align: center;
        }
        
        .guarantee-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .guarantee-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
			background: var(--bg-light);
        }
        
        .cta-container {
            background: var(--gradient-primary);
            color: var(--text-light);
            padding: 60px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            max-width: 900px;
            margin: 0 auto;
        }
        
        .cta-list {
            list-style: none;
            margin: 30px 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cta-list li {
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 20px;
            border-radius: 30px;
            backdrop-filter: blur(5px);
        }
        
        .phone-button {
            display: inline-flex;
            align-items: center;
            background: var(--text-light);
            color: var(--primary-red);
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            font-size: 1.2rem;
            transition: var(--transition);
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .phone-button i {
            margin-right: 10px;
        }
        
        .phone-button:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: scale(1.05);
        }
        
        /* Footer */
        footer {
            background: #222;
            color: #aaa;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .footer-logo i {
            margin-right: 10px;
            color: var(--primary-orange);
        }
        
        .footer-about {
            width: 300px;
        }
        
        .footer-links {
            width: 200px;
        }
        
        .footer-links h3, .footer-contact h3 {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--light-orange);
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--light-orange);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item {
                justify-content: flex-start !important;
                padding-left: 70px;
            }
            
            .timeline-content {
                width: 100%;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::before,
            .timeline-item:nth-child(even) .timeline-content::before {
                left: -12px;
            }
            
            .timeline-item:nth-child(odd) .timeline-icon,
            .timeline-item:nth-child(even) .timeline-icon {
                left: 5px;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background: var(--text-light);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                padding: 20px;
                transition: var(--transition);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 10px 0;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-about, .footer-links, .footer-contact {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .cta-container {
                padding: 40px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 120px 0 60px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 1.6rem;
            }
            
            .section-title h2 {
                font-size: 1.7rem;
            }
            
            .benefit-item {
                padding: 20px;
            }
            
            .timeline-item {
                padding-left: 50px;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }