 :root {
            --primary: #3A5F0B;
            --secondary: #FF9A00;
            --accent: #2C4D6E;
            --dark: #1A1E23;
            --light: #F5F7FA;
            --error: #D32F2F;
            --success: #388E3C;
            --font-main: 'GT America', sans-serif;
            --font-alt: 'Roslindale', serif;
        }

        @font-face {
            font-family: 'GT America';
            src: url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap');
            font-display: swap;
        }

        @font-face {
            font-family: 'Roslindale';
            src: url('https://fonts.googleapis.com/css2?family=Rosarivo&display=swap');
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            background-color: #f0f0f0;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 10% 20%, rgba(58, 95, 11, 0.05) 0%, rgba(58, 95, 11, 0.05) 90%);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header */
        header {
            background-color: var(--dark);
            color: var(--light);
            padding: 1.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-alt);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 2rem;
        }

        .nav-menu a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--secondary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(26, 30, 35, 0.9) 0%, rgba(58, 95, 11, 0.8) 100%), url('../img/1.jpg') no-repeat center center/cover;
            color: var(--light);
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 600px;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-family: var(--font-alt);
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--secondary);
            color: var(--dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .btn:hover {
            background-color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--light);
            border: 2px solid var(--light);
            margin-left: 1rem;
        }

        .btn-secondary:hover {
            background-color: var(--light);
            color: var(--dark);
        }

        .floating-atms {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        .floating-atm {
            position: absolute;
            width: 100px;
            height: 100px;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.3;
            animation: floating 15s infinite ease-in-out;
        }

        @keyframes floating {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(50px, 50px) rotate(5deg);
            }
            50% {
                transform: translate(100px, -30px) rotate(-5deg);
            }
            75% {
                transform: translate(-50px, 50px) rotate(5deg);
            }
        }

        /* About Section */
        .about {
            padding: 6rem 0;
            background-color: var(--light);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-family: var(--font-alt);
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            margin: 1rem auto;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transform: rotate(-3deg);
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: rotate(0deg);
        }

        .about-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary);
            border-radius: 10px;
            top: -20px;
            left: -20px;
            z-index: -1;
            transition: all 0.5s ease;
        }

        .about-image:hover::before {
            top: -10px;
            left: -10px;
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background-color: #fff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background-color: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: var(--primary);
            z-index: 2;
        }

        .service-image {
            height: 200px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .service-content p {
            margin-bottom: 1.5rem;
        }

        .service-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        /* FAQ Section */
        .faq {
            padding: 6rem 0;
            background-color: var(--light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            background-color: var(--primary);
            color: var(--light);
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: #2d4b09;
        }

        .faq-question h3 {
            font-size: 1.2rem;
            margin: 0;
        }

        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            background-color: #fff;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer-content {
            padding: 1.5rem;
        }

        .faq-item.active .faq-question {
            background-color: #2d4b09;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }

        /* Contact Form */
        .contact {
            padding: 6rem 0;
            background: linear-gradient(135deg, rgba(44, 77, 110, 0.9) 0%, rgba(58, 95, 11, 0.9) 100%), url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: var(--light);
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-title {
            text-align: center;
            margin-bottom: 2rem;
            font-family: var(--font-alt);
            font-size: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--light);
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-control:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.3);
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background-color: var(--secondary);
            color: var(--dark);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background-color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Team Section */
        .team {
            padding: 6rem 0;
            background-color: #fff;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .team-member {
            text-align: center;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-image {
            height: 300px;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-member:hover .member-image img {
            transform: scale(1.1);
        }

        .member-info {
            padding: 1.5rem;
            background-color: var(--light);
        }

        .member-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .member-info p {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-links a {
            color: var(--dark);
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--primary);
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 0;
            background-color: var(--light);
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin: 0 1rem;
            text-align: center;
            display: none;
        }

        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 2rem;
            color: var(--primary);
            opacity: 0.3;
            position: absolute;
        }

        .testimonial-text::before {
            top: -15px;
            left: -10px;
        }

        .testimonial-text::after {
            bottom: -25px;
            right: -10px;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
            color: var(--accent);
        }

        .author-info p {
            color: var(--primary);
            font-size: 0.9rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 1rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary);
            opacity: 0.3;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            opacity: 1;
            transform: scale(1.2);
        }

        /* Partners */
        .partners {
            padding: 4rem 0;
            background-color: #fff;
        }

        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 3rem;
        }

        .partner-logo {
            max-width: 150px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 4rem 0 2rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-family: var(--font-alt);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .footer-logo span {
            color: var(--secondary);
        }

        .footer-about p {
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .footer-links h3,
        .footer-contact h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .contact-info {
            margin-bottom: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .contact-icon {
            margin-right: 1rem;
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .footer-links a[href^="#"] {
            pointer-events: none;
        }

        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark);
            color: var(--light);
            padding: 1.5rem;
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
        }

        .cookie-consent.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
            opacity: 0.9;
        }

        .cookie-text a {
            color: var(--secondary);
            text-decoration: none;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-btn {
            padding: 0.5rem 1.5rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background-color: var(--secondary);
            color: var(--dark);
        }

        .cookie-accept:hover {
            background-color: var(--light);
        }

        .cookie-decline {
            background-color: transparent;
            color: var(--light);
            border: 1px solid var(--light);
        }

        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Disclaimer */
        .disclaimer {
            padding: 3rem 0;
            background-color: #f8f8f8;
            text-align: center;
        }

        .disclaimer p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 0.9rem;
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: circle(0px at 90% -10%);
                -webkit-clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }

            .nav-menu.active {
                clip-path: circle(1000px at 90% -10%);
                -webkit-clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }

            .nav-menu li {
                margin: 1rem 0;
            }

            .burger {
                display: block;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.8rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-buttons {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            .btn-secondary {
                margin-left: 0;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .form-container {
                padding: 1.5rem;
            }

            .cookie-buttons {
                width: 100%;
            }

            .cookie-btn {
                flex: 1;
                text-align: center;
            }
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .pulse {
            animation: pulse 3s ease-in-out infinite;
        }

        /* Random ATM Elements */
        .random-atm {
            position: absolute;
            background-color: var(--primary);
            opacity: 0.1;
            border-radius: 5px;
            z-index: -1;
        }

        /* Generate random ATM elements */
        .hero .random-atm:nth-child(1) {
            width: 80px;
            height: 160px;
            top: 20%;
            left: 10%;
            animation: floating 8s infinite ease-in-out;
        }

        .hero .random-atm:nth-child(2) {
            width: 120px;
            height: 60px;
            bottom: 15%;
            right: 15%;
            animation: floating 10s infinite ease-in-out 2s;
        }

        .about .random-atm:nth-child(1) {
            width: 100px;
            height: 200px;
            top: 10%;
            right: 5%;
            animation: floating 12s infinite ease-in-out;
        }

        .services .random-atm:nth-child(1) {
            width: 150px;
            height: 80px;
            bottom: 10%;
            left: 5%;
            animation: floating 9s infinite ease-in-out 1s;
        }

        /* Random color blocks */
        .color-block {
            position: absolute;
            z-index: -1;
            opacity: 0.1;
            border-radius: 20px;
        }

        .hero .color-block:nth-child(1) {
            width: 200px;
            height: 200px;
            background-color: var(--secondary);
            top: 10%;
            right: 10%;
            animation: pulse 8s infinite ease-in-out;
        }

        .about .color-block:nth-child(2) {
            width: 150px;
            height: 150px;
            background-color: var(--accent);
            bottom: 5%;
            left: 5%;
            animation: pulse 10s infinite ease-in-out 2s;
        }

        .services .color-block:nth-child(1) {
            width: 180px;
            height: 180px;
            background-color: var(--primary);
            top: 20%;
            right: 5%;
            animation: pulse 12s infinite ease-in-out;
        }

        .footer-bottom a{
            color: #00C8FF;
        }

                .footer-bottom a:hover{
            color: #009AC5;
        }