        
        :root {
            --light: #ffffff;
            --dark: #ebc715;
            --gradient-primary: linear-gradient(135deg, var(--light) 0%, var(--dark) 100%);
        }
                
        @keyframes slideInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(139, 69, 19, 0.2);
            z-index: 1000;
        }

        .scroll-progress {
            height: 100%;
            background: var(--gradient-primary);
            width: 0%;
            transition: width 0.1s ease;
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, #ebc715 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.1s ease;
        }

        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 2px solid rgba(235, 199, 21, 0.3);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 70px;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(10, 10, 10, 0.98);
            box-shadow: 0 2px 20px rgba(235, 199, 21, 0.1);
        }

        .nav-container {
            margin: 0 2rem 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            height: 100%;
        }

        .logo {
            height: 100%;
            max-height: 60px;
            width: auto;
            display: block;
        }

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

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: #ebc715;
        }

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

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

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #ebc715;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Matrix Digital Rain */
        .matrix-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .matrix-column {
            position: absolute;
            top: -100px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 16px;
            color: #ebc715;
            white-space: pre;
            line-height: 1.2;
            opacity: 0;
            text-shadow: 0 0 10px #ebc715;
        }

        /* Glitch Effect */
        .glitch-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0 clamp(1rem, 3vw, 3rem);
            margin: 0;
            padding: 0;
            font-weight: normal;
        }

        .glitch {
            position: relative;
            color: #ffffff;
            font-size: clamp(4rem, 10vw, 12rem);
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 5px;
            text-shadow: 0 0 20px rgba(235, 199, 21, 0.5);
            display: inline-block;
        }

        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch::before {
            animation: glitch-1 2s infinite linear alternate-reverse;
        }

        .glitch::after {
            animation: glitch-2 3s infinite linear alternate-reverse;
        }

        @keyframes glitch-1 {
            0% {
                clip: rect(42px, 9999px, 44px, 0);
                transform: skew(0.5deg);
                color: #ff0040;
            }
            20% {
                clip: rect(63px, 9999px, 27px, 0);
                transform: skew(0.91deg);
            }
            40% {
                clip: rect(26px, 9999px, 60px, 0);
                transform: skew(0.7deg);
            }
            60% {
                clip: rect(46px, 9999px, 67px, 0);
                transform: skew(0.8deg);
            }
            80% {
                clip: rect(71px, 9999px, 25px, 0);
                transform: skew(1deg);
            }
            100% {
                clip: rect(65px, 9999px, 99px, 0);
                transform: skew(0.4deg);
            }
        }

        @keyframes glitch-2 {
            0% {
                clip: rect(65px, 9999px, 100px, 0);
                transform: skew(0.8deg);
                color: #00ffff;
            }
            25% {
                clip: rect(6px, 9999px, 16px, 0);
                transform: skew(0.6deg);
            }
            50% {
                clip: rect(12px, 9999px, 46px, 0);
                transform: skew(0.4deg);
            }
            75% {
                clip: rect(66px, 9999px, 42px, 0);
                transform: skew(0.2deg);
            }
            100% {
                clip: rect(7px, 9999px, 74px, 0);
                transform: skew(0.3deg);
            }
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 80px 20px 20px;
        }

        .hero-subtitle {
            font-size: clamp(2.2rem, 4vw, 3rem);
            color: #ebc715;
            margin-top: 30px;
            margin-bottom: 20px;
            font-weight: 500;
            opacity: 0;
            padding: 15px 30px;
            border: 2px solid #ebc715;
            position: relative;
            display: inline-block;
        }

        .hero-subtitle::before,
        .hero-subtitle::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border: 2px solid transparent;
            pointer-events: none;
        }

        .hero-subtitle::before {
            border-color: #ff0040;
            animation: subtitle-glitch-1 3s infinite linear;
        }

        .hero-subtitle::after {
            border-color: #00ffff;
            animation: subtitle-glitch-2 2s infinite linear;
        }

        @keyframes subtitle-glitch-1 {
            0%, 100% { clip-path: inset(0 0 95% 0); transform: translate(-2px, 0); }
            20% { clip-path: inset(40% 0 30% 0); transform: translate(2px, 0); }
            40% { clip-path: inset(70% 0 10% 0); transform: translate(-1px, 0); }
            60% { clip-path: inset(10% 0 60% 0); transform: translate(1px, 0); }
            80% { clip-path: inset(80% 0 0 0); transform: translate(-2px, 0); }
        }

        @keyframes subtitle-glitch-2 {
            0%, 100% { clip-path: inset(85% 0 0 0); transform: translate(2px, 0); }
            25% { clip-path: inset(20% 0 50% 0); transform: translate(-2px, 0); }
            50% { clip-path: inset(60% 0 20% 0); transform: translate(1px, 0); }
            75% { clip-path: inset(0 0 70% 0); transform: translate(-1px, 0); }
        }

        /* Background Grid */
        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(235, 199, 21, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(235, 199, 21, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: grid-move 20s linear infinite;
            z-index: 0;
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Sections */
        .section {
            padding: 100px 0;
            position: relative;
            z-index: 10;
        }

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

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 6vw, 5rem);
            color: #ebc715;
            text-align: center;
            margin-bottom: 3rem;
            letter-spacing: 3px;
            text-shadow: 0 0 30px rgba(235, 199, 21, 0.3);
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #cccccc;
            text-align: center;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-card {
            background: rgba(235, 199, 21, 0.05);
            border: 1px solid rgba(235, 199, 21, 0.2);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(235, 199, 21, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: #ebc715;
            box-shadow: 0 20px 40px rgba(235, 199, 21, 0.25);
            background: rgba(235, 199, 21, 0.08);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-title {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .service-description {
            color: #cccccc;
            line-height: 1.6;
        }

        /* Portfolio */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        .portfolio-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(235, 199, 21, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            text-decoration: none;
        }

        .portfolio-item:hover {
            transform: translateY(-8px);
            border-color: rgba(235, 199, 21, 0.5);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(235, 199, 21, 0.1);
        }

        .portfolio-image {
            width: 100%;
            height: 180px;
            overflow: hidden;
            background: #111;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.05);
        }

        .portfolio-content {
            padding: 1.25rem;
        }

        .portfolio-title {
            font-size: 1.1rem;
            color: #ebc715;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .portfolio-description {
            color: #999;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .portfolio-tech {
            display: flex;
            gap: 0.4rem;
            flex-wrap: wrap;
        }

        .tech-tag {
            background: rgba(235, 199, 21, 0.15);
            color: #ebc715;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        /* Contact */
        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info {
            background: rgba(235, 199, 21, 0.05);
            border: 1px solid rgba(235, 199, 21, 0.2);
            border-radius: 10px;
            padding: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            color: #cccccc;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: #ebc715;
            margin-right: 1rem;
            width: 30px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #ebc715;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(235, 199, 21, 0.3);
            border-radius: 5px;
            padding: 0.75rem;
            color: #ffffff;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ebc715;
        }

        .form-group textarea {
            resize: vertical;
            height: 120px;
        }

        .btn {
            background: linear-gradient(45deg, #ebc715, #f0d000);
            color: #0a0a0a;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
        }

        .btn:hover::after {
            width: 300px;
            height: 300px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(235, 199, 21, 0.5);
        }

        .btn:active {
            transform: translateY(-1px);
        }

        /* Footer */
        .footer {
            background: rgba(10, 10, 10, 0.95);
            padding: 3rem 0 1rem;
            border-top: 1px solid rgba(235, 199, 21, 0.2);
            position: relative;
            z-index: 100;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #ebc715;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section a {
            color: #cccccc;
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #ebc715;
        }

        .footer-section a {
            cursor: pointer;
            position: relative;
            z-index: 101;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            text-align: center;
            color: #666;
        }

        /* Cookie Settings Float Button */
        .cookie-settings-btn {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: rgba(235, 199, 21, 0.9);
            color: #0a0a0a;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(235, 199, 21, 0.4);
            z-index: 998;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .cookie-settings-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .cookie-settings-btn:hover {
            background: #ebc715;
            transform: scale(1.1) rotate(15deg);
            box-shadow: 0 6px 25px rgba(235, 199, 21, 0.6);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.98);
            border-top: 1px solid rgba(235, 199, 21, 0.3);
            padding: 1.5rem 2rem;
            z-index: 10001;
            backdrop-filter: blur(10px);
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

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

        .cookie-banner-text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-banner-text p {
            color: #ccc;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .cookie-banner-text a {
            color: #ebc715;
            text-decoration: underline;
            cursor: pointer;
        }

        .cookie-banner-buttons {
            display: flex;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 0.7rem 1.2rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.85rem;
            border: none;
        }

        .cookie-btn-accept {
            background: linear-gradient(45deg, #ebc715, #f0d000);
            color: #0a0a0a;
        }

        .cookie-btn-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(235, 199, 21, 0.4);
        }

        .cookie-btn-reject {
            background: transparent;
            color: #ccc;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .cookie-btn-reject:hover {
            border-color: #ebc715;
            color: #ebc715;
        }

        .cookie-btn-config {
            background: transparent;
            color: #ebc715;
            border: 1px solid #ebc715;
        }

        .cookie-btn-config:hover {
            background: rgba(235, 199, 21, 0.1);
        }

        /* Cookie Modal */
        .cookie-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10002;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .cookie-modal.visible {
            opacity: 1;
            visibility: visible;
        }

        .cookie-modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
        }

        .cookie-modal-content {
            position: relative;
            background: #111;
            border: 1px solid rgba(235, 199, 21, 0.3);
            border-radius: 15px;
            max-width: 600px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .cookie-modal.visible .cookie-modal-content {
            transform: scale(1);
        }

        .cookie-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid rgba(235, 199, 21, 0.2);
        }

        .cookie-modal-header h2 {
            color: #ebc715;
            font-size: 1.3rem;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cookie-modal-close {
            background: none;
            border: none;
            color: #ccc;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            line-height: 1;
        }

        .cookie-modal-close:hover {
            color: #ebc715;
        }

        .cookie-modal-body {
            padding: 1.5rem;
        }

        .cookie-modal-intro {
            color: #ccc;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .cookie-category {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(235, 199, 21, 0.1);
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .cookie-category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cookie-category-info h4 {
            color: #fff;
            font-size: 1rem;
            margin: 0 0 0.25rem 0;
        }

        .cookie-category-info p {
            color: #999;
            font-size: 0.8rem;
            margin: 0;
        }

        .cookie-toggle {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

        .toggle-label {
            width: 50px;
            height: 26px;
            background: #333;
            border-radius: 13px;
            position: relative;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .toggle-label::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 20px;
            height: 20px;
            background: #666;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .cookie-toggle input:checked + .toggle-label {
            background: #ebc715;
        }

        .cookie-toggle input:checked + .toggle-label::after {
            left: 27px;
            background: #0a0a0a;
        }

        .toggle-label.disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .always-active {
            color: #ebc715;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .cookie-modal-footer {
            display: flex;
            justify-content: flex-end;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            border-top: 1px solid rgba(235, 199, 21, 0.2);
            flex-wrap: wrap;
        }

        .cookie-modal-footer .cookie-btn {
            flex: 1;
            min-width: 120px;
            text-align: center;
        }

        /* Cookie Notification Toast */
        .cookie-notification {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #166534;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            z-index: 10003;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .cookie-notification.show {
            transform: translateX(-50%) translateY(0);
        }

        /* Tablet Responsive */
        @media (max-width: 992px) {
            .services-grid {
                max-width: 700px;
            }

            .hero-subtitle {
                margin-top: 40px;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 1.5rem 2rem;
                gap: 1.5rem;
                border-bottom: 1px solid rgba(235, 199, 21, 0.2);
                backdrop-filter: blur(10px);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .mobile-menu.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .mobile-menu.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .hero {
                padding: 100px 20px 20px;
            }

            .hero-subtitle {
                margin-top: 50px;
            }

            .nav-container {
                margin: 0;
                padding: 0 15px;
                justify-content: space-between;
            }

            .logo {
                max-height: 40px;
            }

            .mobile-menu {
                margin-left: auto;
            }

            .header {
                margin-top: 5px;
            }

            .section {
                padding: 60px 0;
            }

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

            .contact-content {
                grid-template-columns: 1fr;
            }

            .cursor,
            .cursor-follower {
                display: none;
            }

            .cookie-banner-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-banner-text {
                min-width: auto;
            }

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

            .cookie-banner-buttons .cookie-btn {
                flex: 1;
                min-width: 90px;
            }

            .cookie-settings-btn {
                left: 20px;
                bottom: 20px;
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }

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

            .cookie-modal-footer {
                flex-direction: column;
            }

            .cookie-modal-footer .cookie-btn {
                width: 100%;
            }
        }
