/* Підключення шрифту Roboto з різними товщинами, включно з Black (900) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* Reset та базові стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовки */
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Посилання */
a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s;
}

a:hover {
    color: #004499;
}

/* Кнопка */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #004499;
    color: #fff;
}

/* Шапка */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

/* Стилі для посилання на логотип */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Стилі для логотипу */
.logo {
    width: 183px;
    height: 63px;
    object-fit: contain;
}

/* Стилі для навігації */
nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    margin-right: 20px;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    text-decoration: none;
}

nav ul li a:hover {
    color: #247179;
}

/* Стиль для кнопки App Store */
.app-store-button {
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
}

.app-store-button img {
    width: 24px;
    height: 24px;
    margin-right: 6px;
}

/* Футер */
footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo-img {
    width: 183px;
    height: auto;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.footer-nav ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #247179;
}

.app-store-link {
    display: flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.app-store-link:hover {
    background-color: #333;
}

.app-store-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.app-store-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.footer-copyright {
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-align: left;
    line-height: 1.4;
    white-space: pre-line;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-copyright {
    flex: 0 0 60%;
    padding-top: 0;
}

.footer-contacts {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.contact-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-value {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .footer-info {
        flex-direction: column;
    }
    
    .footer-copyright, 
    .footer-contacts {
        flex: 0 0 100%;
    }
    
    .footer-contacts {
        margin-top: 30px;
    }
}

/* Герой-секція (перший блок) */
.hero-section {
    padding: 105px 0 80px 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

/* Зображення у верхньому правому куті */
.top-corner-image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 144px;
    height: 144px;
}

.top-corner-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 0 0 45%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    flex: 0 0 50%;
}

.hero-text h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900; /* Black */
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #222;
    width: 664px;
}

.hero-text p {
    font-family: 'Roboto', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #1F1F21;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    font-family: 'Roboto', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 18px;
    background-color: #247179;
    color: #fff;
    width: 258px;
    height: 64px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: #1d5b61;
}

.btn-secondary {
    font-family: 'Roboto', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 18px;
    background-color: #fff;
    color: #333;
    width: 209px;
    height: 64px;
    border-radius: 8px;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 19.8px rgba(205, 205, 205, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    box-shadow: 0 6px 22px rgba(205, 205, 205, 0.55);
    background-color: #E8F5F5;
    color: #247179;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: #7D7D7D;
    font-size: 18px;
}

.feature-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #7D7D7D;
}

/* Головна сторінка */
.hero {
    background-color: #0066cc;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.benefits {
    padding: 60px 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-item h3 {
    color: #0066cc;
}

/* Сторінка партнерів */
.partners-hero {
    background-color: #0066cc;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.partners-list {
    padding: 60px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.partner-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.partner-logo {
    padding: 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.partner-logo img {
    max-width: 150px;
    max-height: 80px;
}

.partner-info {
    padding: 20px;
}

.partner-features {
    margin: 15px 0;
    padding-left: 20px;
}

.partner-features li {
    margin-bottom: 8px;
}

/* Сторінки умов використання та політики конфіденційності */
.terms-hero,
.privacy-hero {
    padding: 60px 0;
    text-align: center;
}

.terms-hero {
    background-color: #0066cc;
    color: #fff;
}

.privacy-hero {
    background-color: #247179;
    color: #fff;
}

.terms-content,
.privacy-content {
    padding: 60px 0;
    background-color: #fff;
}

.terms-content .container,
.privacy-content .container {
    max-width: 960px;
}

.privacy-update-date {
    color: #247179;
    font-size: 20px;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500; /* Medium */
}

.privacy-heading {
    color: #1F1F21;
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700; /* Bold */
}

.privacy-heading:first-of-type {
    margin-top: 20px;
}

.privacy-text {
    color: #1F1F21;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* Regular */
}

.terms-box h2,
.privacy-box h2 {
    color: #222;
    margin-top: 40px;
    font-size: 24px;
    font-weight: 700;
}

.terms-box h2:first-child,
.privacy-box h2:first-of-type {
    margin-top: 0;
}

.terms-box p,
.privacy-box p,
.privacy-box ul {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.privacy-box ul {
    padding-left: 20px;
}

.privacy-box ul li {
    margin-bottom: 10px;
}

/* Стилі для інформації про партнерів на сторінці умов використання */
.partners-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.partner-info-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.partner-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.partner-info-icon {
    width: 40px;
    height: 40px;
    background-color: #e9eaf9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-icon::before {
    content: "i";
    color: #6d75da;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 18px;
    font-style: normal;
}

.partner-info-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.partner-info-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    align-items: flex-start;
}

.info-label {
    flex: 0 0 40%;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #666;
    padding-right: 15px;
}

.info-value {
    flex: 0 0 60%;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.example-row {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px dashed #e5e5e5;
}

/* Адаптивність для інформації про партнерів */
@media (max-width: 992px) {
    .partners-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .info-row {
        flex-direction: column;
    }
    
    .info-label {
        flex: 0 0 100%;
        margin-bottom: 5px;
    }
    
    .info-value {
        flex: 0 0 100%;
    }
}

/* Секція з функціями (другий блок) */
.features-section {
    position: relative;
    background-color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 498px;
    background-image: url('../images/2blockbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.features-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.features-text {
    flex: 0 0 40%;
    color: #fff;
}

.features-text h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.features-text p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.features-image {
    margin-top: 40px;
    width: 150%; /* Збільшуємо розмір зображення на 50% */
    margin-left: -100px; /* Зміщуємо картинку ліворуч на 100px */
}

.features-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.features-cards {
    flex: 0 0 55%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px; /* Вертикальний відступ між комірками */
    column-gap: 30px; /* Горизонтальний відступ залишаємо незмінним */
}

.feature-card {
    background-color: #F2F7F9;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 352px; /* Фіксуємо висоту комірки */
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon img {
    width: 88px;
    height: 88px;
}

.feature-card h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600; /* Semibold */
    font-size: 28px;
    margin-bottom: 15px;
    color: #1F1F21;
}

.feature-card p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 16px;
    line-height: 1.5;
    color: #1F1F21;
}

/* Секція FAQ (третій блок) */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.faq-top-image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 147px;
    height: 127px;
}

.faq-top-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-bottom-image {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 116px;
    height: 116px;
}

.faq-bottom-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 40px;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

.faq-items {
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    background-color: #F5F7F9;
    border-radius: 24px;
    margin-bottom: 24px;
    overflow: hidden;
    border: 2px solid #E8EDF1;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #d0d8e0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: "";
    position: absolute;
    right: 10px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

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

.faq-question h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #1F1F21;
    margin: 0;
}

/* Додаємо підказку для розгортання/згортання */
.faq-question .faq-toggle::before {
    content: '';
    position: absolute;
    right: 80px;
    font-size: 12px;
    color: #75E59B;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover .faq-question .faq-toggle::before {
    opacity: 1;
}

.faq-item.active .faq-question .faq-toggle::before {
    content: '';
    opacity: 1;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    transition: transform 0.4s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease, background-color 0.4s ease;
    background-color: transparent;
    opacity: 0;
}

.faq-answer p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #1F1F21;
    margin-bottom: 24px;
}

/* Активний стан для розгорнутого FAQ */
.faq-item.active {
    border-color: #75E59B;
    box-shadow: 0 4px 15px rgba(117, 229, 155, 0.2);
}

.faq-item.active .faq-question {
    background-color: #f0f7f4;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: #75E59B;
}

.faq-item.active .faq-answer {
    padding: 24px 32px 24px;
    max-height: 1000px; /* Збільшуємо значення для відображення довшого контенту */
    background-color: #fff;
    opacity: 1;
}

/* Ключові кадри анімації для елементів інтерфейсу */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    /* Мобільне меню */
    .mobile-menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #1A1A1A; /* Темніший фон як на зображенні */
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
        padding-right: 30px;
        overflow-y: auto; /* Додаємо скролінг для довгого меню */
    }
    
    .main-nav.active {
        right: 0;
        animation: slideInRight 0.3s ease forwards;
    }
    
    .main-nav ul {
        flex-direction: column;
        margin: 0;
        padding: 0;
        width: 100%;
        margin-bottom: 50px; /* Додаємо відступ знизу */
    }
    
    .main-nav ul li {
        margin: 0;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav ul li a {
        font-size: 22px; /* Більший шрифт як на зображенні */
        display: block;
        padding: 20px 0;
        color: #fff;
        width: 100%;
        font-weight: 400;
    }
    
    .main-nav ul li a:hover {
        color: #75E59B;
    }
    
    /* Заголовок ШВИДКО кредит */
    .mobile-nav-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .mobile-nav-title .title-text {
        font-size: 32px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 5px;
    }
    
    .mobile-nav-title .credit-text {
        background-color: #75E59B;
        color: #000;
        padding: 5px 20px;
        border-radius: 20px;
        font-size: 18px;
        font-weight: 500;
    }
    
    /* Кнопка закриття меню */
    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
    }

    /* Стилі для overlay при відкритому меню */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .menu-overlay.active {
        display: block;
        animation: fadeIn 0.3s ease forwards;
    }
    
    .faq-question .faq-toggle::before {
        display: none; /* Приховуємо підказки на мобільних пристроях */
    }
}

@media (max-width: 576px) {
    /* Хедер */
    .logo {
        width: 150px;
        height: 50px;
    }
    
    /* Героїчна секція */
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    /* Заголовки секцій */
    .features-text h2,
    .faq-title,
    .contact-heading {
        font-size: 24px;
    }
    
    /* Контактна форма */
    .form-row {
        flex-direction: column;
    }
    
    .form-row .form-group {
        width: 100%;
    }
    
    /* Зображення */
    .top-corner-image,
    .faq-top-image,
    .faq-bottom-image {
        display: none;
    }
    
    /* Footer */
    .footer-copyright {
        font-size: 12px;
    }
    
    .footer-contacts {
        font-size: 14px;
    }
    
    .cta-button {
        width: auto;
        max-width: 250px;
        font-size: 16px;
        height: 56px;
        line-height: 56px;
    }
}

/* Оптимізація для touch-екранів */
@media (hover: none) {
    /* Прибираємо hover-ефекти на сенсорних екранах */
    .btn:hover,
    .cta-button:hover,
    .faq-question:hover,
    .partner-card:hover,
    .feature-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Замінюємо hover на active для кращої взаємодії */
    .btn:active,
    .cta-button:active,
    .faq-question:active,
    .partner-card:active,
    .feature-card:active {
        background-color: rgba(0, 0, 0, 0.05);
    }
}

/* Мобільне меню */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1000;
}

/* Медіа-запити для адаптивності */
@media (max-width: 768px) {
    /* Мобільне меню */
    .mobile-menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #1A1A1A; /* Темніший фон як на зображенні */
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
        padding-right: 30px;
        overflow-y: auto; /* Додаємо скролінг для довгого меню */
    }
    
    .main-nav.active {
        right: 0;
        animation: slideInRight 0.3s ease forwards;
    }
    
    .main-nav ul {
        flex-direction: column;
        margin: 0;
        padding: 0;
        width: 100%;
        margin-bottom: 50px; /* Додаємо відступ знизу */
    }
    
    .main-nav ul li {
        margin: 0;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav ul li a {
        font-size: 22px; /* Більший шрифт як на зображенні */
        display: block;
        padding: 20px 0;
        color: #fff;
        width: 100%;
        font-weight: 400;
    }
    
    .main-nav ul li a:hover {
        color: #75E59B;
    }
    
    /* Логотип в мобільному меню */
    .mobile-nav-logo {
        display: flex;
        align-items: center;
        margin-bottom: 50px;
    }
    
    .mobile-nav-logo img {
        height: 80px;
        width: auto;
    }
    
    /* Заголовок ШВИДКО кредит */
    .mobile-nav-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .mobile-nav-title .title-text {
        font-size: 32px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 5px;
    }
    
    .mobile-nav-title .credit-text {
        background-color: #75E59B;
        color: #000;
        padding: 5px 20px;
        border-radius: 20px;
        font-size: 18px;
        font-weight: 500;
    }
    
    /* Кнопка закриття меню */
    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
    }

    /* Стилі для overlay при відкритому меню */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .menu-overlay.active {
        display: block;
        animation: fadeIn 0.3s ease forwards;
    }
    
    .faq-question .faq-toggle::before {
        display: none; /* Приховуємо підказки на мобільних пристроях */
    }
} 