@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@600&family=Manrope:wght@200..800&display=swap');
@font-face {
    font-family: 'Acumin Pro';
    src: url('/assets/fonts/Acumin-BdPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HostGrotesk-SemiBold';
    src: url('/assets/fonts/HostGrotesk-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-ExtraLight.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

:root {
    --white: #fff;
    --techno: #EFFF06;
    --black: #171712;
    --gray: #f5f5f5;
    --radius: 0px;
    --shadow: 0 4px 32px #0001;
    --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: 'Manrope' ;
    background: #fff;
    min-height: 100vh;
    color: var(--black);
    overflow-x: hidden;
}

header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0; left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    box-shadow: 0 2px 16px #0001;
    transition: background 0.3s;
}

header.sticky {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.logo {
    font-family: 'HostGrotesk-SemiBold', Sans-serif !important;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img { 
    height: 48px; 
    width: 48px; 
}

.logo-text {
    font-family: 'HostGrotesk-SemiBold', !important;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: var(--black);
}

#main-logo-img {
    width: 320px;
    height: 320px;
}

@media (max-width: 768px) {
    #main-logo-img {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 645px) {
    #main-logo-img {
        width: 145px;
        height: 145px;
    }
}

@media (max-width: 500px) {
    #main-logo-img {
        width: 120px;
        height: 120px;
    }
}

nav {
    display: flex;
    gap: 36px;
}

nav a {
    font-family: 'Acumin Pro' ;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    font-size: 1.15rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    position: relative; /* Добавляем для позиционирования */
}

nav a:hover, nav a.active {
    color: var(--white); /* Меняем цвет текста на белый */
    border-bottom: 2px solid var(--techno);
    background: var(--black); /* Черный фон */
    padding: 8px; /* Добавляем горизонтальный отступ */
    margin: 0 -8px; /* Компенсируем добавленный padding */
    height: 100%; /* Заполняем всю высоту родителя */
    display: block; /* Чтобы высота работала корректно */
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.burger span {
    width: 32px;
    height: 4px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

main { 
    padding-top: 110px; 
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(120deg, #fff 50%, #EFFF06 100%);
    margin-bottom: 64px;
    padding: 128px 0 32px 0;
}
@media (max-width: 550px) {
    .hero {
        margin-bottom: 1px;
        padding: 170px 0 32px 0;
    }
}

.hero-logo {
    width: 320px;
    height: 320px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logo-pop 1.2s cubic-bezier(.5,1.8,.5,1) 1;
}

@keyframes logo-pop {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-family: 'Acumin Pro';
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    color: var(--black);
    text-shadow: 0 2px 12px #fff7;
    animation: fadein 1.5s 0.3s both;
}

.hero-desc {
    font-size: 1.35rem;
    margin-bottom: 36px;
    color: #333;
    animation: fadein 1.5s 0.5s both;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

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

.store-buttons {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-bottom: 32px;
    animation: fadein 1.5s 0.7s both;
}

.store-button {
    display: inline-block;
    transition: transform 0.2s;
}

.store-button:hover {
    transform: scale(1.05);
}

.store-button img {
    height: 60px;
    transition: transform 0.2s;
    cursor: pointer;
}

.store-buttons img:hover { 
    transform: scale(1.07); 
}

/* Section base */
.section {
    padding: 64px 0 48px 0;
    background: #fff;
    border-radius: var(--radius);
    margin: 48px auto;
    max-width: 1100px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Acumin Pro';
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
    color: var(--black);
}

.section-desc {
    font-size: 1.18rem;
    color: #444;
    text-align: center;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards */
.service-cards {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 0 20px;
}

.service-card {
    background: var(--gray);
    border-radius: 0px;
    box-shadow: 0 2px 12px #0001;
    padding: 36px 28px;
    min-width: 220px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: box-shadow var(--transition), transform var(--transition);
    opacity: 0;
    animation: fadein 1s forwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }

.service-card:hover {
    box-shadow: 0 8px 32px #0002;
    transform: translateY(-6px) scale(1.03);
}

.service-card img {
    width: 40px;
    height: 40px;
}

.service-card-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
    font-family: 'Acumin Pro';
}

.service-card-desc {
    font-size: 1.05rem;
    color: #444;
    text-align: center;
}

/* Benefits Section */
.benefits-cards {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
    padding: 0 20px;
}

.benefit-card {
    background: var(--gray);
    border-radius: 0px;
    box-shadow: 0 2px 12px #0001;
    padding: 36px 28px;
    min-width: 220px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: box-shadow var(--transition), transform var(--transition);
    opacity: 0;
    animation: fadein 1s forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.2s; }
.benefit-card:nth-child(2) { animation-delay: 0.4s; }
.benefit-card:nth-child(3) { animation-delay: 0.6s; }
.benefit-card:nth-child(4) { animation-delay: 0.3s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.7s; }

.benefit-card:hover {
    box-shadow: 0 8px 32px #0002;
    transform: translateY(-6px) scale(1.03);
}

.benefit-card img {
    width: 40px;
    height: 40px;
}

.benefit-card-title {
    font-size: 1.13rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
    font-family: 'Acumin Pro';
}

.benefit-card-desc {
    font-size: 1.01rem;
    color: #444;
    text-align: center;
}

/* Map Section */
.map-section {
    padding: 64px 0 48px 0;
    background: #fff;
    border-radius: var(--radius);
    margin: 48px auto;
    max-width: 1100px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    text-align: center;
}

.map-title {
    font-family: 'Acumin Pro';
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

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

#bali-map {
    width: 100%;
    height: 350px;
    border-radius: var(--radius);
    margin-bottom: 18px;
    box-shadow: 0 2px 12px #0001;
}

.map-locations {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 12px;
}

.leaflet-control-attribution .ukraine-flag,
.leaflet-ukraine-flag {
    display: none !important;
}

/* How It Works Section */
.how-section {
    padding: 64px 0 48px 0;
    background: #fff;
    border-radius: var(--radius);
    margin: 48px auto;
    max-width: 1100px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    text-align: center;
}

.how-steps {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 0 20px;
}

.how-step {
    background: var(--techno);
    border-radius: 0px;
    box-shadow: 0 2px 12px #0001;
    padding: 36px 18px;
    min-width: 180px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadein 1s forwards;
    transition: box-shadow var(--transition), transform var(--transition);
}

.how-step:nth-child(1) { animation-delay: 0.2s; }
.how-step:nth-child(2) { animation-delay: 0.4s; }
.how-step:nth-child(3) { animation-delay: 0.6s; }

.how-step:hover {
    box-shadow: 0 8px 32px #0002;
    transform: translateY(-6px) scale(1.03);
}

.how-step-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.how-step-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
}

.how-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.how-step-desc {
    font-size: 1rem;
    color: var(--black);
}

/* CTA Section */
.cta-section {
    padding: 64px 0 48px 0;
    background: var(--techno);
    border-radius: var(--radius);
    margin: 48px auto;
    max-width: 1100px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-family: 'Acumin Pro';
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--black);
}

.cta-desc {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 32px;
}

.cta-btn {
    background: var(--black);
    color: var(--techno);
    font-family: 'Acumin Pro';
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 44px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px #0002;
}

.cta-btn:hover {
    background: #333;
    color: #fff;
    transform: scale(1.04);
}

/* Footer */
footer {
    background: #fff;
    padding: 40px 0 24px 0;
    text-align: center;
    color: #888;
    font-size: 1rem;
    margin-top: 60px;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: 0 -2px 12px #0001;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #000;
    text-decoration: underline;
}

.footer-separator {
    color: #ccc;
    margin: 0 4px;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #999;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close-modal:hover {
    color: #000;
}

.modal h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.modal-body {
    line-height: 1.6;
    color: #555;
}

.modal-body p {
    margin-bottom: 1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        padding: 25px 20px;
        width: 95%;
    }
    
    .modal h2 {
        font-size: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-separator {
        display: none;
    }
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

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

.form-group label {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group label:after {
    content: '';
    display: none;
}

.form-group label[required]:after {
    content: '*';
    color: #e53e3e;
    margin-left: 2px;
    display: inline;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Custom dropdown arrow */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

/* Remove default arrow in IE */
select::-ms-expand {
    display: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

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

.submit-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background-color: #333;
}

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

/* Responsive adjustments for contact form */
@media (max-width: 768px) {
    .contact-form {
        gap: 15px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
    }
    
    .form-group select {
        background-position: right 12px center;
    }
    
    .submit-btn {
        padding: 12px 20px;
    }
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.footer-socials {
    margin: 12px 0;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-socials a img {
    width: 28px;
    height: 28px;
    filter: grayscale(0.3);
    transition: filter 0.2s, transform 0.2s;
}

.footer-socials a img:hover { 
    filter: grayscale(0);
    transform: scale(1.2);
}

.footer-contact {
    margin-top: 12px;
    font-size: 0.95rem;
}

.footer-copyright {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #999;
}

/* Стили для улучшения доступности */
a:focus, button:focus {
    outline: 2px solid var(--techno);
    outline-offset: 3px;
}

.cta-btn:focus {
    outline: 2px solid #fff;
}

/* Стили для плавной анимации прокрутки */
html {
    scroll-behavior: smooth;
}

/* Стили для предзагрузки изображений */
img {
    max-width: 100%;
    height: auto;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 900px) {
    header { 
        padding: 18px 16px; 
    }
    nav { 
        gap: 18px; 
    }
    .section, .map-section, .how-section, .cta-section { 
        padding: 36px 0 18px 0; 
    }
    .benefits-cards, .how-steps, .service-cards { 
        gap: 18px; 
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
        padding: 0 16px;
    }
    .hero-desc {
        font-size: 1.2rem;
        padding: 0 24px;
    }
    .store-buttons {
        flex-wrap: wrap;
    }
    .store-buttons img {
        height: 52px;
    }
    .section, .map-section, .how-section, .cta-section { 
        padding: 36px 16px;
        margin: 24px 16px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-desc {
        font-size: 1.05rem;
        padding: 0 16px;
    }
    .service-cards, .benefits-cards, .how-steps {
        gap: 20px;
        padding: 0 16px;
    }
    .service-card, .benefit-card, .how-step {
        padding: 24px 16px;
    }
    .benefits-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .benefit-card, .service-card, .how-step {
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 700px) {
    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 220px;
        padding: 24px 0;
        border-radius: 0 0 0 18px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.07);
        display: none;
        z-index: 1001;
    }
    nav.open { 
        display: flex; 
    }
    .burger { 
        display: flex; 
    }
    nav a {
        width: 100%;
        padding: 12px 24px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }
    nav a:last-child {
        border-bottom: none;
    }
    .section, .map-section, .how-section, .cta-section { 
        margin: 18px 8px; 
    }
}

@media (max-width: 640px) {
    header {
        padding: 16px 12px;
    }
    .logo {
        font-size: 1.8rem;
    }
    .logo img {
        height: 36px;
        width: 36px;
    }
    .logo-text {
        font-size: 1.8rem;
    }
    .burger span {
        width: 28px;
        height: 3px;
    }
    main {
        padding-top: 80px;
    }
    .hero {
        min-height: unset;
        padding: 40px 12px 24px;
        margin-bottom: 32px;
    }
    .hero-logo {
        width: 140px;
        height: 140px;
        margin-bottom: 24px;
    }
    .hero-logo img {
        width: 90px;
        height: 90px;
    }
    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    .hero-desc {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    .section, .map-section, .how-section, .cta-section {
        padding: 32px 12px 24px;
        margin: 16px 8px;
        border-radius: 12px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .service-card, .benefit-card, .how-step {
        max-width: 100%;
        min-width: 0;
        padding: 20px 16px;
    }
    #bali-map {
        height: 280px;
    }
    .cta-title {
        font-size: 1.6rem;
    }
    .cta-desc {
        font-size: 1.05rem;
        margin-bottom: 24px;
    }
    .cta-btn {
        padding: 14px 36px;
        font-size: 1.1rem;
    }
    .benefits-cards {
        grid-template-columns: 1fr;
    }
    .footer-socials {
        gap: 24px;
    }
    .footer-socials a img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 500px) {
    .service-card, .benefit-card, .how-step {
        min-height: unset;
    }
}

@media (max-width: 380px) {
    .logo-text {
        font-size: 1.5rem;
    }
    .logo img {
        height: 30px;
        width: 30px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 320px) {
    .logo-text {
        font-size: 1.3rem;
    }
    .logo img {
        height: 28px;
        width: 28px;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
}

/* Стили для Leaflet карты */
.leaflet-control-attribution a {
    background: none !important;
}
.leaflet-container .leaflet-control-attribution {
    background: white !important;
}
.leaflet-control-attribution::before {
    content: none !important;
}

/* Стили для анимации загрузки изображений */
.lazy-load {
    opacity: 0;
    transition: opacity 0.5s;
}
.lazy-load.loaded {
    opacity: 1;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h1 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.faq-header p {
    font-size: 18px;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Accordion */
.faq-container {
    margin-top: 30px;
}

.faq-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 177, 235, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 25px;
    background-color: #fff;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f5f9fa;
}

.faq-question:after {
    content: '+';
    font-size: 22px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question:after {
    content: '−';
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: var(--transition);
    background-color: #fff;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 25px;
    border-top: 1px solid #eaeaea;
}

/* Footer */
.faq-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 0 15px;
    color: var(--secondary-color);
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 20px auto;
    }
    
    .faq-header h1 {
        font-size: 28px;
    }
    
    .faq-header p {
        font-size: 16px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}