        :root {
            --accent-color: #ff194a;
            --footer-bg: #222;
            --heading-color: #161616;
            --text-color: #161616;
            --button-secondary: #15363A;
            --white: #fff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Jost', sans-serif;
            color: var(--text-color);
            background-color: var(--white);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--heading-color);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--accent-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--accent-color);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Banner Styles */
        .banner {
            padding: 180px 0 100px;
            background-color: #f9f9f9;
            text-align: center;
        }
        
        .banner .subtitle {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .banner h1 {
            font-size: 48px;
            color: var(--heading-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .banner p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--accent-color);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--accent-color);
        }
        
        .btn-secondary {
            background-color: var(--button-secondary);
            border-color: var(--button-secondary);
        }
        
        .btn-secondary:hover {
            color: var(--button-secondary);
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .section-subtitle {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title {
            font-size: 36px;
            color: var(--heading-color);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .about-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 30px;
        }
        
        .tag {
            padding: 8px 15px;
            background-color: #f3f3f3;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: #f9f9f9;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .service-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-card img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--heading-color);
        }
        
        /* Why Us Section */
        .why-us {
            padding: 100px 0;
        }
        
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .why-us-card {
            text-align: center;
            padding: 30px 20px;
        }
        
        .why-us-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 25, 74, 0.1);
            border-radius: 50%;
            color: var(--accent-color);
            font-size: 24px;
        }
        
        .why-us-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--heading-color);
        }
        
        /* Stats Section */
        .stats {
            padding: 80px 0;
            background-color: var(--accent-color);
            color: var(--white);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 18px;
            opacity: 0.9;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background-color: #f9f9f9;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial-rating {
            color: #ffc107;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .testimonial-text {
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .author-name {
            font-weight: 600;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
        }
        
        .contact-form {
            flex: 1;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Jost', sans-serif;
            font-size: 16px;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .contact-info-item {
            display: flex;
            margin-bottom: 30px;
        }
        
        .contact-info-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 25, 74, 0.1);
            color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-info-text h3 {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--heading-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--footer-bg);
            color: var(--white);
            padding: 70px 0 30px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-logo span {
            color: var(--accent-color);
        }
        
        .footer-about {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .footer-links h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .footer-links ul li a:hover {
            opacity: 1;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-links-bottom {
            display: flex;
            gap: 20px;
        }
        
        .footer-links-bottom a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            font-size: 14px;
        }
        
        .footer-links-bottom a:hover {
            opacity: 1;
        }
        
        .copyright {
            opacity: 0.8;
            font-size: 14px;
        }
        
        /* Popup Styles */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: var(--white);
            padding: 40px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
        }
        
        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-color);
        }
        
        .popup h2 {
            margin-bottom: 20px;
            color: var(--heading-color);
        }
        
        /* Cookie Popup */
        .cookie-popup {
            position: fixed;
            bottom: 20px;
            left: 20px;
            max-width: 400px;
            background-color: var(--white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            z-index: 1000;
            display: none;
        }
        
        .cookie-popup.active {
            display: block;
        }
        
        .cookie-popup p {
            margin-bottom: 15px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
        }
        
        .cookie-accept {
            background-color: var(--accent-color);
            color: var(--white);
        }
        
        .cookie-decline {
            background-color: #eee;
            color: var(--text-color);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--white);
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            z-index: 1500;
            transition: right 0.3s;
            padding: 30px 20px;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .mobile-menu ul {
            list-style: none;
            margin-top: 40px;
        }
        
        .mobile-menu ul li {
            margin-bottom: 20px;
        }
        
        .mobile-menu ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-size: 18px;
            font-weight: 500;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1400;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .icon {
            font-size: 30px;
            color: #ff194a;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-container,
            .contact-container {
                flex-direction: column;
            }
            
            .about-image {
                order: -1;
            }
            
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .desktop-menu {
                display: none;
            }
            
            .banner h1 {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .why-us-grid,
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .banner {
                padding: 150px 0 80px;
            }
            
            .banner h1 {
                font-size: 32px;
            }
        }

                /* Cookie Content */
        .cookie-content {
            padding: 80px 0;
        }
        
        .cookie-section {
            margin-bottom: 40px;
        }
        
        .cookie-section h2 {
            font-size: 28px;
            color: var(--heading-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .cookie-section h3 {
            font-size: 22px;
            color: var(--heading-color);
            margin: 25px 0 15px;
        }
        
        .cookie-section p {
            margin-bottom: 15px;
        }
        
        .cookie-section ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .cookie-section ul li {
            margin-bottom: 10px;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .cookie-table th, .cookie-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        
        .cookie-table th {
            background-color: #f5f5f5;
        }
        
        .cookie-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

                /* Terms Content */
        .terms-content {
            padding: 80px 0;
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .terms-section h2 {
            font-size: 28px;
            color: var(--heading-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .terms-section h3 {
            font-size: 22px;
            color: var(--heading-color);
            margin: 25px 0 15px;
        }
        
        .terms-section p {
            margin-bottom: 15px;
        }
        
        .terms-section ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .terms-section ul li {
            margin-bottom: 10px;
        }