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

        :root {
            --primary: #1e40af;
            --primary-light: #3b82f6;
            --primary-dark: #1e3a8a;
            --secondary: #0f172a;
            --accent: #f59e0b;
            --success: #10b981;
            --bg: #f8fafc;
            --white: #fff;
            --text: #334155;
            --text-light: #475569;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, .1);
            --radius: 12px;
            --transition: all .3s ease
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--bg)
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition)
        }

        img,
        svg {
            max-width: 100%;
            height: auto;
            display: block
        }

        .skip-link {
            position: absolute;
            top: -100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: var(--white);
            padding: 12px 24px;
            border-radius: var(--radius);
            z-index: 9999;
            transition: var(--transition)
        }

        .skip-link:focus {
            top: 10px
        }

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

        /* Header Styles Removed (Using Bulletproof Header) */

        /* Hero */
        .hero {
            padding: 100px 0 60px;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3C/svg%3E") repeat;
            opacity: .3
        }

        .hero-content {
            position: relative;
            z-index: 1
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .15);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: .875rem;
            margin-bottom: 20px
        }

        .hero h1 {
            font-size: clamp(1.75rem, 5vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            opacity: .9;
            margin-bottom: 24px;
            max-width: 600px
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin: 32px 0
        }

        .stat {
            text-align: center;
            padding: 16px;
            background: rgba(255, 255, 255, .1);
            border-radius: var(--radius)
        }

        .stat-number {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: 800
        }

        .stat-label {
            font-size: .875rem;
            opacity: .95
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer
        }

        .btn-primary {
            background: var(--accent);
            color: var(--white)
        }

        .btn-primary:hover {
            background: #d97706;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg)
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary)
        }

        .btn-secondary:hover {
            background: var(--bg);
            transform: translateY(-2px)
        }

        /* Sections */
        section {
            padding: 60px 0
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px
        }

        .section-badge {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: .875rem;
            font-weight: 500;
            margin-bottom: 12px
        }

        .section-title {
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 12px
        }

        .section-desc {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto
        }

        /* Services */
        .services {
            background: var(--white)
        }

        .services-grid {
            display: grid;
            gap: 24px
        }

        .service-card {
            background: var(--bg);
            padding: 24px;
            border-radius: var(--radius);
            transition: var(--transition);
            border: 1px solid transparent
        }

        .service-card:hover {
            border-color: var(--primary-light);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg)
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px
        }

        .service-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--white);
            fill: none;
            stroke-width: 2
        }

        .service-card h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 8px
        }

        .service-card p {
            color: var(--text-light);
            font-size: .9rem;
            margin-bottom: 12px
        }

        .service-link {
            color: var(--primary);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 4px
        }

        .service-link:hover {
            gap: 8px
        }

        /* Why Us */
        .why-us {
            background: var(--bg)
        }

        .why-grid {
            display: grid;
            gap: 20px
        }

        .why-card {
            display: flex;
            gap: 16px;
            background: var(--white);
            padding: 20px;
            border-radius: var(--radius);
            transition: var(--transition)
        }

        .why-card:hover {
            box-shadow: var(--shadow)
        }

        .why-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .why-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--white);
            fill: none;
            stroke-width: 2
        }

        .why-card h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 4px
        }

        .why-card p {
            color: var(--text-light);
            font-size: .875rem
        }

        /* Process */
        .process {
            background: var(--white)
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: relative
        }

        .process-step {
            display: flex;
            gap: 20px;
            align-items: flex-start
        }

        .step-number {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem
        }

        .step-content h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 4px
        }

        .step-content p {
            color: var(--text-light);
            font-size: .9rem
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: var(--white)
        }

        .testimonials-grid {
            display: grid;
            gap: 24px
        }

        .testimonial {
            background: rgba(255, 255, 255, .1);
            padding: 24px;
            border-radius: var(--radius);
            backdrop-filter: blur(10px)
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem
        }

        .author-info h4 {
            font-weight: 600
        }

        .author-info span {
            font-size: .875rem;
            opacity: .95
        }

        /* Districts */
        .districts {
            background: var(--bg)
        }

        .districts-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px
        }

        .district-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px;
            background: var(--white);
            border-radius: var(--radius);
            font-weight: 500;
            transition: var(--transition)
        }

        .district-link:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateX(4px)
        }

        .district-link svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2
        }

        /* FAQ */
        .faq {
            background: var(--white)
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .faq-item {
            background: var(--bg);
            border-radius: var(--radius);
            overflow: hidden
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            color: var(--secondary);
            text-align: left
        }

        .faq-question svg {
            width: 20px;
            height: 20px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
            transition: var(--transition)
        }

        .faq-item.active .faq-question svg {
            transform: rotate(180deg)
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s ease
        }

        .faq-item.active .faq-answer {
            max-height: 500px
        }

        .faq-answer p {
            padding: 0 20px 20px;
            color: var(--text-light);
            line-height: 1.7
        }

        /* CTA */
        .cta {
            background: var(--secondary);
            color: var(--white);
            text-align: center
        }

        .cta h2 {
            font-size: clamp(1.5rem, 4vw, 2rem);
            margin-bottom: 12px
        }

        .cta p {
            opacity: .95;
            margin-bottom: 24px
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px
        }

        /* Responsive */
        @media(min-width:768px) {
            .hero {
                padding: 140px 0 80px
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .districts-grid {
                grid-template-columns: repeat(4, 1fr)
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(min-width:1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .why-grid {
                grid-template-columns: repeat(4, 1fr)
            }

            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .footer-grid {
                grid-template-columns: repeat(4, 1fr)
            }

            .process-steps {
                flex-direction: row
            }

            .process-step {
                flex-direction: column;
                text-align: center;
                flex: 1
            }
        }

        /* ============================================
   BULLETPROOF HEADER & MOBILE MENU
   Simple CSS that works on ALL devices
   ============================================ */

        /* Header - Fixed top bar */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 9998;
            display: flex;
            align-items: center;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Logo */
        .site-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .site-logo svg.logo-icon {
            width: 46px;
            height: 46px;
            flex-shrink: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo-text .logo-primary {
            font-size: 1.15rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #2074b5;
        }

        .logo-text .logo-secondary {
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            color: #0a2e52;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: none;
        }

        @media (min-width: 992px) {
            .desktop-nav {
                display: flex;
                gap: 30px;
                list-style: none;
                margin: 0;
                padding: 0;
            }
        }

        .desktop-nav a {
            color: #0f172a;
            font-weight: 500;
            font-size: 0.95rem;
            text-decoration: none;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: color 0.2s, border-color 0.2s;
        }

        .desktop-nav a:hover {
            color: #1e40af;
            border-bottom-color: #1e40af;
        }

        /* Header CTA Button */
        .header-phone-btn {
            display: none;
            background: #1e40af;
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: background 0.2s;
        }

        @media (min-width: 992px) {
            .header-phone-btn {
                display: inline-block;
            }
        }

        .header-phone-btn:hover {
            background: #1e3a8a;
        }

        /* Mobile Menu Toggle Button */
        .menu-toggle-btn {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        @media (min-width: 992px) {
            .menu-toggle-btn {
                display: none;
            }
        }

        .menu-toggle-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: #0f172a;
            margin: 3px 0;
            transition: transform 0.3s, opacity 0.3s;
        }

        .menu-toggle-btn.open span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }

        .menu-toggle-btn.open span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle-btn.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Menu Overlay - SIMPLE & BULLETPROOF */
        .mobile-nav-overlay {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            bottom: 0;
            background: #ffffff;
            z-index: 9997;
            overflow-y: auto;
            display: none;
            padding: 20px;
        }

        .mobile-nav-overlay.open {
            display: block;
        }

        .mobile-nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mobile-nav-list li {
            border-bottom: 1px solid #e2e8f0;
        }

        .mobile-nav-list a {
            display: block;
            padding: 18px 10px;
            color: #0f172a;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
        }

        .mobile-nav-list a:active {
            background: #f1f5f9;
            color: #1e40af;
        }

        /* Mobile Contact Buttons */
        .mobile-contact-btns {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-call-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px;
            background: #1e40af;
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 10px;
        }

        .mobile-whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px;
            background: #25d366;
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 10px;
        }

        /* ============================================
   PROFESSIONAL FOOTER
   ============================================ */
        .site-footer {
            background: #1e3a8a;
            color: #fff;
            padding: 50px 0 20px;
        }

        .footer-grid {
            display: grid;
            gap: 30px;
            margin-bottom: 40px;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr 1fr;
            }
        }

        .footer-brand h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
        }

        .footer-brand p {
            opacity: 0.85;
            line-height: 1.7;
            font-size: 0.9rem;
        }

        .footer-section h4 {
            font-size: 1rem;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .footer-contact-info p {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 12px;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .footer-contact-info a {
            color: #fff;
            text-decoration: none;
        }

        .footer-contact-info strong {
            color: #f59e0b;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            opacity: 0.8;
        }
        /* Body padding for fixed header */
        body {
            padding-top: 70px;
        }

        /* ============================================
           STICKY CALL & WHATSAPP BUTTONS
           ============================================ */
        .sticky-buttons {
            position: fixed;
            bottom: 24px;
            right: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 9500;
        }

        /* Gallery Styles (Carousel) */
        .gallery-carousel {
            overflow: hidden;
            width: 100%;
            position: relative;
            padding: 20px 0;
            display: flex;
        }

        .carousel-track {
            display: flex;
            gap: 24px;
            width: max-content;
            animation: scroll-gallery 40s linear infinite;
            will-change: transform;
        }

        .gallery-carousel:hover .carousel-track {
            animation-play-state: paused;
        }

        @keyframes scroll-gallery {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-50% - 12px)); }
        }

        .gallery-item {
            width: 300px;
            flex-shrink: 0;
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 4/3;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: #fff;
            padding: 20px;
            font-weight: 600;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .btn-gallery {
            display: table;
            margin: 40px auto 0;
            background: var(--primary);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background 0.3s, transform 0.3s;
            box-shadow: var(--shadow);
        }
        .btn-gallery:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            color: white;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        .sticky-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .sticky-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .sticky-btn.call {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
        }

        .sticky-btn.whatsapp {
            background: #25d366;
        }

        .sticky-btn svg {
            width: 28px;
            height: 28px;
            fill: #fff;
        }

        /* Mobilde biraz küçült */
        @media (max-width: 480px) {
            .sticky-buttons {
                bottom: 16px;
                right: 16px;
                gap: 10px;
            }

            .sticky-btn {
                width: 52px;
                height: 52px;
            }

            .sticky-btn svg {
                width: 24px;
                height: 24px;
            }
        }
    

                .form-item {
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                }

                .form-item label {
                    font-size: 0.95rem;
                    font-weight: 600;
                    color: #e2e8f0;
                    /* Crisp white-gray for high readablity */
                    margin-left: 2px;
                }

                .form-item input,
                .form-item select,
                .form-item textarea {
                    width: 100%;
                    padding: 16px 20px;
                    background: #121826;
                    /* Deep rich blue/black, not muddy gray */
                    border: 1px solid #2d3748;
                    /* Sleek outline */
                    border-radius: 12px;
                    color: #ffffff;
                    font-family: inherit;
                    font-size: 1.05rem;
                    outline: none;
                    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
                }

                .form-item input::placeholder,
                .form-item textarea::placeholder {
                    color: #718096;
                    /* Elegant subtle placeholder */
                }

                .form-item select option {
                    background-color: #1a202c;
                    color: #ffffff;
                }

                .form-item input:focus,
                .form-item select:focus,
                .form-item textarea:focus {
                    background: #1a202c;
                    border-color: #0096ff;
                    box-shadow: 0 0 0 4px rgba(0, 150, 255, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.1);
                    transform: translateY(-2px);
                }

                .submit-action-btn {
                    margin-top: 15px;
                    width: 100%;
                    padding: 20px;
                    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
                    /* Premium WhatsApp Gradient */
                    color: #ffffff;
                    border: none;
                    border-radius: 14px;
                    font-size: 1.25rem;
                    font-weight: 700;
                    letter-spacing: 0.5px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 12px;
                    cursor: pointer;
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.5);
                    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
                }

                .submit-action-btn:hover {
                    transform: translateY(-4px) scale(1.01);
                    box-shadow: 0 20px 35px -5px rgba(37, 211, 102, 0.6);
                }

                .submit-action-btn:active {
                    transform: translateY(0) scale(0.98);
                }

                /* Mobile Adjustments */
                @media (max-width: 900px) {
                    .quote-wrapper>div {
                        flex-basis: 100% !important;
                    }

                    .quote-wrapper .quote-left {
                        padding: 40px 30px;
                        border-right: none;
                        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                    }

                    .quote-wrapper .quote-right {
                        padding: 40px 30px;
                    }

                    .form-item input,
                    .form-item select,
                    .form-item textarea {
                        padding: 14px 16px;
                    }
                }
            

                .footer-seo-accordions details>summary::-webkit-details-marker {
                    display: none;
                }

                .footer-seo-accordions details[open] summary .acc-icon {
                    transform: rotate(45deg);
                    transition: transform 0.3s ease;
                }

                .footer-seo-accordions details summary .acc-icon {
                    transition: transform 0.3s ease;
                }

                .footer-links a:hover,
                .footer-seo-accordions a:hover {
                    color: #fff !important;
                    text-decoration: underline !important;
                    padding-left: 4px;
                    transition: all 0.2s;
                }
            
.footer-seo-accordions a:hover { color: #fff !important; }
