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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            overflow-x: hidden;
        }

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

        /* Header */
        header {
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #f39c12;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

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

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

        .nav-links a:hover {
            color: #f39c12;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(52, 73, 94, 0.8), rgba(44, 62, 80, 0.9)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><rect width="1000" height="1000" fill="%23ecf0f1"/><g fill="%23bdc3c7" opacity="0.3"><rect x="0" y="0" width="100" height="100"/><rect x="200" y="100" width="100" height="100"/><rect x="400" y="200" width="100" height="100"/><rect x="600" y="0" width="100" height="100"/><rect x="800" y="100" width="100" height="100"/><rect x="100" y="200" width="100" height="100"/><rect x="300" y="0" width="100" height="100"/><rect x="500" y="100" width="100" height="100"/><rect x="700" y="200" width="100" height="100"/><rect x="900" y="0" width="100" height="100"/></g></svg>');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .hero-content {
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #f39c12, #e67e22);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: #ecf0f1;
            background-image: url('data:image/svg+xml;utf8,<svg width="800" height="400" xmlns="http://www.w3.org/2000/svg"><rect fill="%23ecf0f1" width="800" height="400"/><circle fill="%23f39c12" fill-opacity="0.12" cx="700" cy="100" r="120"/><circle fill="%232c3e50" fill-opacity="0.07" cx="200" cy="350" r="180"/><rect x="500" y="250" width="120" height="120" rx="30" fill="%23e67e22" fill-opacity="0.08"/></svg>');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #f39c12, #e67e22);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

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

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(45deg, #f39c12, #e67e22);
        }

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

        .service-icon {
            font-size: 3rem;
            color: #f39c12;
            margin-bottom: 1rem;
        }

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

        /* About Section */
        .about {
            padding: 80px 0;
            background: white;
        }

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

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-features {
            list-style: none;
            margin-top: 2rem;
        }

        .about-features li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
        }

        .about-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .about-image {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            height: 400px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            box-shadow: 0 15px 35px rgba(243, 156, 18, 0.3);
        }

        /* Contact Section Styles */
        .contact {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .contact-content {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            width: 100%;
            max-width: 1200px;
        }

        .contact-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .contact-item h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .contact-item p {
            color: #666;
            margin: 5px 0;
        }

        .contact-item a {
            color: #007bff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #0056b3;
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

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

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

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

            .hero p {
                font-size: 1.1rem;
            }

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

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

            .section-title {
                font-size: 2rem;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }
            
            .contact-content {
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 0 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

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

        /* Cookie Banner Styles */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(44, 62, 80, 0.95);
            backdrop-filter: blur(10px);
            color: white;
            padding: 15px 20px;
            z-index: 10000;
            display: none;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
        }

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

        .cookie-text p {
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.4;
            opacity: 0.9;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.85rem;
        }

        .cookie-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cookie-btn.select {
            background: transparent;
            color: white;
            border: 2px solid #bdc3c7;
        }

        .cookie-btn.select:hover {
            background: #bdc3c7;
            color: #2c3e50;
        }

        .cookie-btn.accept {
            background: linear-gradient(45deg, #f39c12, #e67e22);
            color: white;
        }

        .cookie-btn.accept:hover {
            box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
        }

        .cookie-btn.accept-all {
            background: linear-gradient(45deg, #27ae60, #2ecc71);
            color: white;
        }

        .cookie-btn.accept-all:hover {
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }

        .cookie-btn.decline {
            background: #e74c3c;
            color: white;
            border: 2px solid #e74c3c;
        }

        .cookie-btn.decline:hover {
            background: #c0392b;
            border-color: #c0392b;
            color: white;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }

        /* Cookie Modal Styles */
        .cookie-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10001;
            backdrop-filter: blur(5px);
        }

        .cookie-modal-content {
            background: white;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .cookie-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            border-bottom: 1px solid #ecf0f1;
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
            color: white;
            border-radius: 15px 15px 0 0;
        }

        .cookie-modal-header h3 {
            margin: 0;
            font-size: 1.3rem;
        }

        .modal-close {
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .cookie-modal-body {
            padding: 25px;
        }

        .cookie-modal-body p {
            margin: 0 0 20px 0;
            color: #2c3e50;
            font-size: 1rem;
        }

        .cookie-options {
            margin: 0;
        }

        .cookie-option {
            margin: 15px 0;
        }

        .cookie-checkbox {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            padding: 12px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
            border: 1px solid transparent;
        }

        .cookie-checkbox:hover {
            background-color: #f8f9fa;
            border-color: #e9ecef;
        }

        .cookie-checkbox input[type="checkbox"] {
            display: none;
        }

        .checkmark {
            width: 22px;
            height: 22px;
            border: 2px solid #bdc3c7;
            border-radius: 4px;
            margin-right: 15px;
            margin-top: 2px;
            position: relative;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .cookie-checkbox input[type="checkbox"]:checked + .checkmark {
            background-color: #f39c12;
            border-color: #f39c12;
        }

        .cookie-checkbox input[type="checkbox"]:checked + .checkmark::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 14px;
            font-weight: bold;
        }

        .cookie-checkbox input[type="checkbox"]:disabled + .checkmark {
            background-color: #95a5a6;
            border-color: #95a5a6;
            opacity: 0.7;
        }

        .cookie-option-text strong {
            display: block;
            margin-bottom: 4px;
            color: #2c3e50;
            font-size: 1rem;
        }

        .cookie-option-text small {
            color: #7f8c8d;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .cookie-modal-footer {
            padding: 20px 25px;
            border-top: 1px solid #ecf0f1;
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            background: #f8f9fa;
            border-radius: 0 0 15px 15px;
            position: sticky;
            bottom: 0;
        }

        .cookie-modal-footer .cookie-btn {
            padding: 8px 16px;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .cookie-buttons {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }

            .cookie-btn {
                flex: 1;
                min-width: 120px;
                max-width: 150px;
            }

            .cookie-modal-content {
                width: 95%;
                max-height: 90vh;
                margin: 20px;
            }

            .cookie-modal-header {
                padding: 15px 20px;
            }

            .cookie-modal-header h3 {
                font-size: 1.1rem;
            }

            .cookie-modal-body {
                padding: 20px;
            }

            .cookie-modal-footer {
                padding: 15px 20px;
                flex-direction: column;
            }

            .cookie-modal-footer .cookie-btn {
                width: 100%;
                margin: 5px 0;
            }
        }