        .footer .contact-wrapper .map .contact-con ul li .text p {
            margin-top: 0;
        }

        .cookie-consent-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 9998;
            display: none;
        }

        .cookie-consent-banner {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            z-index: 9999;
            padding: 30px;
            max-width: 600px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            display: none;
            border-top: 4px solid #EF8201;
        }

        .cookie-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .cookie-text h3 {
            margin: 0 0 15px 0;
            font-size: 20px;
            color: #333;
        }

        .cookie-text p {
            margin: 0 0 12px 0;
            font-size: 14px;
            color: #555;
            line-height: 1.6;
        }

        .cookie-text a {
            color: #EF8201;
            text-decoration: none;
        }

            .cookie-text a:hover {
                text-decoration: underline;
            }

        .cookie-section {
            background: #f9f9f9;
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 10px;
        }

            .cookie-section h4 {
                margin: 0 0 5px 0;
                font-size: 14px;
                color: #333;
                font-weight: 600;
            }

            .cookie-section p {
                margin: 0;
                font-size: 13px;
                color: #666;
                line-height: 1.5;
            }

        .cookie-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 10px;
        }

            .cookie-buttons button {
                padding: 12px 20px;
                border: none;
                border-radius: 6px;
                cursor: pointer;
                font-size: 14px;
                font-weight: 500;
                transition: all 0.3s;
                white-space: nowrap;
            }

        .btn-accept {
            background: #EF8201;
            color: #fff;
        }

            .btn-accept:hover {
                background: #d96f00;
            }

        .btn-decline {
            background: #f5f5f5;
            color: #333;
            border: 1px solid #ddd;
        }

            .btn-decline:hover {
                background: #eee;
            }

        .btn-settings {
            background: transparent;
            color: #333;
            border: 1px solid #ddd;
        }

            .btn-settings:hover {
                background: #eee;
            }

        @media (max-width: 768px) {
            .cookie-consent-banner {
                width: 95%;
                padding: 20px;
                max-height: 85vh;
            }

            .cookie-text h3 {
                font-size: 18px;
            }

            .cookie-buttons {
                flex-direction: column;
            }

                .cookie-buttons button {
                    width: 100%;
                }
        }

        .feedback-privacy {
            display: block;
            font-size: 12px;
            color: #999;
            margin-bottom: 10px;
        }

            .feedback-privacy a {
                color: #EF8201;
                text-decoration: none;
            }

                .feedback-privacy a:hover {
                    text-decoration: underline;
                }
