* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
body, html {
    height: 100%;
}

.navbar {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 2% 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.navbar-logo {
    font-size: 24px;
    font-weight: bold;
    color: #24D26A;
}

.navbar-menu {
    display: flex;
    gap: 35px;
}
.navbar-logo img{
    width: 200px;
}

.navbar-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-menu a:hover, .navbar-menu a.active {
    color: #24D26A;
}

.quote-btn {
    background-color: #24D26A;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.quote-btn:hover {
    background-color: #1aad53;
}
.hero {
    background: url('https://sbbc-health.com/coverlinker/main-header.png') center/cover no-repeat;
    height: 100vh;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 10px;
}

.partners-section h2{
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
}

.options {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.option img{
    width: 36px;
    height: 36px;

}

.option {
    min-width: 130px;
    min-height: 130px;
    backdrop-filter: blur(6px);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    border: 2px solid #f4f4f478;
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.option.active {
    border-color: #24D26A;
}
.option:hover {
    background: rgba(0,0,0,0.2);
}

.option i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.form-group input {
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    width: 390px;
}

.form-group button {
    background-color: #24D26A;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-group button:hover {
    background-color: #1aad53;
}

.partners-section {
    text-align: center;
    padding: 100px 0;

}


.logos-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px; /* Розділення між логотипами */
}

.logos-container img {
    max-height: 75px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.logos-container img:hover {
    transform: scale(1.1); /* Ефект збільшення */
    filter: grayscale(0%); /* Повертає кольори */
}


.how-it-works {
    background-color: #f7f9fb;
    padding: 100px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #2b2b2b;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    position: relative;
    width: 30%;
    height: 20em;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

.step-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.54);
    backdrop-filter: blur(6px);
    color: #fff;
    text-align: left;
    height: 40%;
}

.step-content h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.4em;
}

.reviews-section {
    padding: 100px 0px 100px 5%;
    background-color: #fff;
    max-width: 100%;
    margin: auto;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.reviews-header h2 {
    font-size: 2.5em;
    font-weight: bold;
}

.reviews-header p {
    font-size: 1em;
    color: #555;
    margin-top: 5px;
}

.nav-buttons-pc {
    display: flex;
    gap: 0px;
    padding: 0px 5% 0px 0px;
}
.nav-buttons-mob{
    display: none;
}

.nav-buttons-pc button,
.nav-buttons-mob button {
    padding: 10px 14px;
    background-color: #f1f4f9;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.nav-buttons-pc button:hover,
.nav-buttons-mob button:hover{
    background-color: #d9e1ec;
}

.reviews-wrapper {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 280px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.04);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 1.15em;
    font-weight: 700;
}

.badge {
    display: inline-block;
    background-color: #24D26A;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    margin-top: 4px;
}

.badge.green {
    background-color: #24A6D2;
}

.review-card h5 {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.review-card p {
    font-size: 1rem;
    color: #333;
}
.nav-buttons button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.prev-btn{
    border-radius: 10px 0px 0px 10px ;
}
.next-btn{
    border-radius: 0px 10px 10px 0px ;
}
.cta-banner {
    background-color: #3ec27e; /* Зелений фон */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.cta-content h2 {
    color: #fff;
    font-size: 2em;
    font-weight: 700;
    margin: 0;
}

.cta-button {
    background-color: #fff;
    color: #111827;
    font-weight: 600;
    font-size: 1em;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #f3f3f3;
    transform: translateY(-2px);
}
.footer {
    background-color: #303030D9;
    color: #fff;
    padding: 5% 5%;
    font-family: 'Open Sans', sans-serif;
}

.dropdown {
    position: relative;
}

.dropdown a {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    backdrop-filter: blur(8px);
    padding: 15px 20px;
    display: none;
    text-align: left;
    width: 30em;
    flex-direction: column;
    gap: 10px;
    border-radius: 8px;
    min-width: 200px;
    background: rgba(0, 0, 0, 0.24);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 20;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.dropdown-menu a:hover {
    color: #24D26A;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.mobile-dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    font-size: 1.1em;
    color: #111;
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 10px;
    margin-top: 10px;
    gap: 10px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    display: flex;
}

.mobile-dropdown-menu a {
    color: #111;
    text-decoration: none;
    font-size: 1em;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
    gap: 40px;
}

.footer-brand {
    flex: 1 1 150px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand .logo img {
    width: 200px;
}

.footer-brand p {
    margin: 10px 0;
    font-size: 1rem;
    color: #ccc;
}

.footer-brand .contact a {
    color: #24D26A;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex: 2;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col h4 {
    color: #24D26A;
    font-size: 1.15em;
    margin-bottom: 30px;
}

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

.footer-col li {
    margin-bottom: 20px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #24D26A;
}
.footer-smart{
    padding: 10px 0 30px 0px;
}
.copyright{
    padding-top: 150px;
}
.copyright-mob{
    display: none;
}
.mobile-menu-toggle {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 15;
    background: none;
    border: none;
    font-size: 26px;
    color: white;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: white;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 20px;
}

.mobile-menu.open {
    transform: translateY(0%);
}

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

.mobile-menu-header img {
    height: 36px;
}

.mobile-menu-header button {
    background: none;
    border: none;
    font-size: 24px;
    color: #111;
}

.mobile-nav {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.mobile-nav a {
    font-size: 1.1em;
    color: #111;
    text-decoration: none;
}

.mobile-quote-btn {
    display: inline-block;
    background-color: #24D26A;
    color: white!important;
    text-align: center;
    font-weight: 600;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    .navbar-menu, .quote-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
    .hero h1{
        font-size: 2.5em;
        font-weight: bold;
        margin-bottom: 10px;
        margin-top: 10%;
        line-height: 1em;
    }
    .hero p{
        font-size: 1em;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .form-group button,
    .form-group input{
        width: 100%;
    }
    .options{
        width: 100%;
        gap: 15px;
        justify-content: space-around;
    }
    .option{
        width: 47%;
    }
    .partners-section h2,
    .how-it-works h2 {
        font-size: 2em;
    }
    .logos-container img{
        max-width: 25%;
    }
    .logos-container {
        margin-top: 20px;
        gap: 20px;
    }
    .step{
        width: 100%;
    }
    .step-content{
        height: auto;
    }
    .reviews-header h2{
        font-size: 2em;
        text-align: center;
    }
    .reviews-header p{
        text-align: center;
    }
    .nav-buttons-pc {
        display: none;
    }
    .nav-buttons-mob{
        display: flex;
        gap: 0px;
        padding: 30px 0px 0px 0px;
        justify-content: center;
    }
    .copyright{
        display: none;
    }
    .copyright-mob{
        display: block;
        color: #a4a0a0;
    }

}
