/********** Template CSS **********/
:root {
    --primary: #1363C6;
    --secondary: #15ACE1;
    --light: #F4F7FE;
    --dark: #14183E;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.EcdOCIbenw {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 9999;
}

.logo-link {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.desktop-nav {
    display: flex;
    gap: 20px;
}

.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: #f90;
}

.menu-toggle {
    display: none;
}

.NGj2noye3d {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 10001;
}

.NGj2noye3d span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.FxnisgfwLW {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.97);
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 10000;
}

.FxnisgfwLW a {
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    margin: 10px 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.menu-toggle:checked~.FxnisgfwLW {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .NGj2noye3d {
        display: flex;
    }
}

.about-img {
    position: relative;
    overflow: hidden;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* змінюється рівень затемнення */
    z-index: 1;
}

.about-img img {
    position: relative;
    z-index: 0;
}

/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 0;
    color: rgba(255, 255, 255, .7);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -75px;
    position: relative;
    /* Необхідно для позиціювання псевдоелемента */
    background: url(../img/MjiWj4ylbk.png) center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

/* Додаємо затемнення поверх зображення */
.hero-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    /* Рівень затемнення */
    z-index: 0;
}

/* Піднімаємо контент над затемненням */
.hero-header .container {
    position: relative;
    z-index: 1;
}



/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

/* .about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
} */


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature,
.newsletter {
    position: relative;
    /* Необхідно для позиціювання псевдоелемента */
    background: url(../img/MjiWj4ylbk.png) center center no-repeat;
    background-size: cover;
    overflow: hidden;
    /* Забезпечує обрізання ::before */
}

/* Псевдоелемент для затемнення */
.feature::before,
.newsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Можна змінити прозорість */
    z-index: 0;
}

/* Піднімаємо контент над затемненням */
.feature>*,
.newsletter>* {
    position: relative;
    z-index: 1;
}


.blog-showcase-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.IRDOaWpUj8 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.IRDOaWpUj8 h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.IRDOaWpUj8 p {
    font-size: 18px;
    color: #666;
}

.bbPHGZzEgc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 14px;
    font-weight: 600;
    color: #007bff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.blog-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}


/* --- Base structure --- */
.sDc72h0wFx,
.section-features-modern {
    padding: 80px 0;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- About section --- */
.JEYc9TNZRs {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-image {
    flex: 1 1 45%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1 1 50%;
}

.about-content article p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* --- Features section --- */
.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #222;
}

.features-header p {
    max-width: 700px;
    margin: 0 auto 20px;
    color: #666;
}

.IqpoQLxo6t {
    display: inline-block;
    background-color: #0d6efd;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.IqpoQLxo6t:hover {
    background-color: #084298;
}

/* --- General Container --- */
.AheeAuWeTO {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Base --- */
.section-mission,
.section-goals {
    padding: 80px 0;
    background-color: #fdfdfd;
}

/* --- Layouts --- */
.mission-layout,
.goals-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

/* --- Image Styles --- */
.mission-image img,
.goals-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    object-fit: cover;
}

/* --- Text Blocks --- */
.mission-text,
.goals-text {
    color: #333;
}

.mission-text h2,
.goals-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #111;
    position: relative;
}

.mission-text h2::after,
.goals-text h2::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #0d6efd;
    bottom: -10px;
    left: 0;
}

.custom-services,
.pricing-section {
    padding: 80px 30px;
    background: #f9fafb;
    font-family: 'Poppins', sans-serif;
}

.main-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #222;
}

.DhCupsuhxs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-in;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.service img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 10px;
}

.service p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ehnMUaRb54 {
    font-weight: bold;
    color: #ff5555;
    display: block;
    margin-bottom: 15px;
}

.btn-service {
    padding: 10px 20px;
    background: #ff5555;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #185ad1;
}

.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.plan-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.plan-card h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 20px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.xDoIsufDmp {
    padding: 10px 22px;
    background: #111;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.xDoIsufDmp:hover {
    background: #000;
}

.popular {
    border: 2px solid #ff5555;
    transform: scale(1.03);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-section {
    padding: 80px 30px;
    background: #ffffff;
}

.testimonial-section .main-title {
    text-align: center;
    font-size: 2.6rem;
    color: #222;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.C52icoZEsJ {
    background: #f5f7fa;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    animation: fadeInUp 1s ease;
}

.C52icoZEsJ:hover {
    transform: translateY(-10px);
}

.user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #ff5555;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 5px;
}

.ejaBeI4cWC {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 15px;
}

.contact-modern {
    background: #f9f9fb;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 100px;
    margin-bottom: 100px;
}

.AheeAuWeTO {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

.F3NrsaqxTI {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
}

.contact-info {
    flex: 1 1 45%;
}

.contact-title {
    font-size: 2rem;
    color: #1d3557;
    margin-bottom: 1rem;
}

.GXEeeUCjiZ {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.CxuLBT3aND p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.CxuLBT3aND a {
    color: #ff5555;
    text-decoration: none;
}

.map-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.map-frame {
    width: 100%;
    height: 250px;
    border: none;
}

.contact-form-card {
    flex: 1 1 45%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.modern-form h3 {
    margin-bottom: 1.5rem;
    color: #1d3557;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.modern-form input:focus,
.modern-form textarea:focus {
    border-color: #ff5555;
    outline: none;
}

.form-submit-btn {
    background-color: #ff5555;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit-btn:hover {
    background-color: #005fa3;
}

@media (max-width: 768px) {
    .F3NrsaqxTI {
        flex-direction: column;
    }
}

.testimonial-info p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-text p,
.goals-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- Responsive Adjustment --- */
@media (max-width: 768px) {

    .mission-layout,
    .goals-layout {
        grid-template-columns: 1fr;
    }
}

/* --- Features grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-card h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}


@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
}

.case-item:hover img {
    transform: scale(1.2);
}

.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 3rem;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: url(../img/VK2fVwLBZD.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}

.possum-footer {
    background: #101010;
    color: #ccc;
    font-family: 'Segoe UI', sans-serif;
    padding: 60px 20px 30px;
}

.possum-container {
    max-width: 1200px;
    margin: 0 auto;
}

.possum-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.possum-left {
    flex: 1 1 300px;
    max-width: 500px;
}

.tyjm8xA4UG {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff5555;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.possum-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.YsMCrHAsSG {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.possum-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.possum-contact li {
    margin-bottom: 10px;
}

.possum-contact a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.possum-contact a:hover {
    color: #fff;
}

.KXfv1YQx95 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.possum-links h4 {
    font-size: 1.1rem;
    color: #f90000;
    margin-bottom: 15px;
}

.possum-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.possum-links li {
    margin-bottom: 10px;
}

.possum-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.possum-links a:hover {
    color: #fff;
}

.possum-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #999;
}

.possum-bottom a {
    color: #ff0000;
    text-decoration: none;
}

.possum-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .possum-top {
        flex-direction: column;
    }

    .KXfv1YQx95 {
        flex-direction: column;
    }
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    background-color: #111;
    /* темний фон для контрасту */
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 8px;
    background-color: #1a1a1a;
    transition: all 0.4s ease;
    filter: grayscale(100%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    filter: grayscale(0%);
    transform: scale(1.15);
}

/* Glow для кожної соцмережі */
.social-icon[alt="Facebook"]:hover {
    box-shadow: 0 0 12px #1877f2, 0 0 25px #1877f2;
}

.social-icon[alt="Instagram"]:hover {
    box-shadow: 0 0 12px #e1306c, 0 0 25px #e1306c;
}

.social-icon[alt="YouTube"]:hover {
    box-shadow: 0 0 12px #ff0000, 0 0 25px #ff0000;
}

.social-icon[alt="TikTok"]:hover {
    box-shadow: 0 0 12px #69C9D0, 0 0 25px #EE1D52;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255, 255, 255, .5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}