@charset "utf-8";

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #4d8bbc;
    border-radius: 10px;

}

::-webkit-scrollbar-track {
    background: #192f3f;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--col1);
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

a:hover {
    transform: translateY(-3px);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    button[type="submit"] {
        font-family: inherit;
        font-size: 16px;
    }
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #3e2964 0%, #1f1927 15%, #37163e 35%, #3a2363 50%, #533a7d 70%, #500b51 85%, #1e012b 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated background elements */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgb(77 139 188 / 12%);
    animation: float 6s ease-in-out infinite;
    /* box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1); */
}

.shape:nth-child(1) {
    width: 120px;
    height: 80px;
    border-radius: 15px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.shape:nth-child(2) {
    width: 90px;
    height: 140px;
    border-radius: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(-20deg);
}

.shape:nth-child(3) {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(25deg);
}

.shape:nth-child(4) {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
    transform: rotate(-10deg);
}

.shape:nth-child(5) {
    width: 110px;
    height: 70px;
    border-radius: 14px;
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
    transform: rotate(30deg);
}

.shape:nth-child(6) {
    width: 95px;
    height: 95px;
    border-radius: 20px;
    top: 40%;
    left: 5%;
    animation-delay: 5s;
    transform: rotate(-15deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(var(--start-rotation, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(calc(var(--start-rotation, 0deg) + 180deg));
    }
}

/* Glass container styles */
.glass {
    background: linear-gradient(110deg, #1b354aa3, #00103300);
    backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: 20px;
    box-shadow: 0px 0px 0px 0px rgb(255 255 255 / 10%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.glass:hover {
    /* background: rgb(47 34 80); */
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgb(0 0 0 / 91%);
    backdrop-filter: blur(15px);
    background: linear-gradient(246deg, #0f2c43, #00103300);
}

/* Header styles */
header {
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 45px;
}
.logo {
    font-size: 32px;
    font-weight: bold;
    color: #ffffffcc;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover .logo-icon svg {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

.nav-links {
    display: flex;
    gap: 20px;
}

.logo img {
    max-width: 240px;
}

.lite {
    font-weight: 200;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 12px 24px 13px 24px;
    border-radius: 10px;
    cursor: pointer;
    border-bottom: 1px solid #4d8bbc;
    font-size: 1.0625rem;
    font-weight: 600;
}
.nav-links a:hover,
.nav-links a.active {
    color: #ffffffcc;
    background: #4d8bbc;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.sb_head {
    margin: 10px 0 0 0 !important;
}

/* Стили кнопки "Наверх" */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4d8bbc 0%, #163c5a 100%);
    color: #ffffffcc;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(106, 17, 203, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(106, 17, 203, 0.7);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Анимация стрелки */
.back-to-top:hover svg {
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}


canvas {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.page.active {
    display: block;
}

.content-wrapper {
    /* min-height: calc(100vh - 300px); */
    margin: 70px 0 0 0;
}

/* Home page styles */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    padding: 60px 40px;
    margin-bottom: 60px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 446px;
    height: auto;
    border-radius: 120px;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
    /* filter: drop-shadow(2px 4px 38px #7602ac); */
}

.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Убедитесь, что ширина остается 100% */
    z-index: 1000;
}

.feature-icon img {
    max-width: 80px;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 2.8rem;
    color: #ffffffcc;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    font-family: 'Alumni Sans';
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #4d8bbc;
    color: #ffffffcc;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    border: 0px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.cta-button:hover {
    background: rgb(55 97 130);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

button[type="submit"] {
    font-family: inherit;
    font-size: 16px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    color: #ffffffcc;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgb(255 255 255 / 0%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffffcc;
    font-family: 'Alumni Sans';
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* About page styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.about-text {
    padding: 40px;
    color: #ffffffcc;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Alumni Sans';
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    color: #ffffffcc;
    /* background: #4b134000; */
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffffcc;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* Team section styles */
.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    font-size: 3rem;
    color: #ffffffcc;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* font-family: 'Alumni Sans'; */
}

/* swip */

/* Контейнер должен быть position:relative чтобы абсолютные стрелки позиционировались внутри */
.swiper.mySwiper {
    position: relative;
    overflow: visible;
    /* если стрелки обрезаются, менять на visible */
    padding: 24px 60px;
    /* место для стрелок внутри */
}

.swiper.mySwiper .swiper-button-prev,
.swiper.mySwiper .swiper-button-next {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 30px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    background: rgb(77 139 188);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* ставим внутрь контейнера */
.swiper.mySwiper .swiper-button-prev {
    left: 0px !important;
    right: auto !important;
}

.swiper.mySwiper .swiper-button-next {
    right: 0px !important;
    left: auto !important;
}

/* цвет/размер стрелок (использует псевдо ::after от Swiper) */
.swiper.mySwiper .swiper-button-prev::after,
.swiper.mySwiper .swiper-button-next::after {
    color: #ffffff;
    font-size: 18px;
    opacity: 1;
}


 .answers {
    overflow: hidden;
    /* max-width: 955px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    
} 

.fixed-link-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4d8bbc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    z-index: 1000;
    transition: background 0.3s;
}
.fixed-link-btn img {
    max-width: 38px;
}

.fixed-link-btn:hover {
    background: #3b4b63;
}



/* мобильные правки */
@media (max-width: 768px) {
    .swiper.mySwiper {
        padding: 10px 14px;
    }

    .swiper.mySwiper .swiper-button-prev,
    .swiper.mySwiper .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .swiper.mySwiper .swiper-button-prev {
        left: 8px !important;
    }

    .swiper.mySwiper .swiper-button-next {
        right: 8px !important;
    }
}



/* убери фиксированные размеры у слайдов */
.mySwiper .swiper-slide {
    width: auto !important;
    /* Swiper сам задаст ширину */
    flex-shrink: 0;
}



.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-member {
    padding: 40px 30px;
    text-align: center;
    color: #ffffffcc;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover .team-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #ffffffcc;
}

.team-member .role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.team-member .bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #ffffffcc;
}

/* Services page styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    padding: 40px 30px;
    color: #ffffffcc;
    text-align: left;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #ffffffcc;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-map-section {
    margin-top: 40px;
}

.contact-form {
    padding: 40px;
}

.scooby-gradient {
    background: linear-gradient(135deg, #F2C641, #F2B441, #F27F3D, #D93A2B);
    background-clip: text;
    color: transparent;
    font-family: 'Corduroy';
}

.contact-form img {
    max-width: 500px;
    border-radius: 120px;
}

.contact-form h2 {
    color: #ffffffcc;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffffcc;
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.contact-info {
    padding: 40px;
    color: #ffffffcc;
}

.logo a {
    text-decoration: none;
    color: #ffffffcc;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.contact-item-text h4 {
    color: #ffffffcc;
    margin-bottom: 5px;
}

.contact-item-text p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-map {
    padding: 40px;
    color: #ffffffcc;
    width: 100%;
}

.contact-map h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.map-container {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.map-placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.map-placeholder p {
    margin: 8px 0;
    font-size: 16px;
}

.map-placeholder .address {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.map-placeholder .integration-note {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 20px;
}

.team-avatar img {
    max-width: 85px;
}

/* Footer styles */
#footer {
    margin-top: 60px;
    padding: 30px 0;
}

.footer-content {
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffffcc;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.copyright a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.link_sb {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.link_sb a {
    text-decoration: none;
    color: #fff;
}

.link_sb img {
    max-width: 20px;
}

.contact-item-icon img {
    max-width: 20px;
}

.contact-item-text a {
    text-decoration: none;
    color: #fff;
}

.contact-item p {
    padding: 21px;
    background: #00000017;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 885.99px) {

    canvas {
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            width: 100%;
        }

    .contact-info {
        padding: 30px 20px;
        color: #ffffffcc;
    }

    #footer {
        margin-top: -30px;
        padding: 30px 15px;
    }

    .about-text p {
        font-size: inherit;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 20px;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: -30px;
        align-items: start;
    }

    .content-wrapper {
        /* min-height: calc(100vh - 300px); */
        margin: -30px 0 0 0;
    }

    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        align-items: center;
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .hero-image img {
        width: 100%;
        max-width: 446px;
        height: auto;
        border-radius: 30px;
        /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
        /* filter: drop-shadow(2px 4px 38px #7602ac); */
    }

    /* Adjust padding for mobile */
    .page {
        padding: 0 15px;
    }

    .content-wrapper {
        min-height: auto;
    }

    .feature-card {
        padding: 30px 20px;
        text-align: center;
        color: #ffffffcc;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form img {
        max-width: 250px;
        border-radius: 50px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-map {
        padding: 30px 20px;
        color: #ffffffcc;
        width: 100%;
    }

    .team-member {
        padding: 30px 20px;
        text-align: center;
        color: #ffffffcc;
        transition: all 0.3s ease;
    }

    .about-text {
        padding: 30px 20px;
        color: #ffffffcc;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        gap: 15px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-links a {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 200px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-links {
        gap: 15px;
        flex-direction: column;
    }

    .footer-links a {
        display: block;
        text-align: center;
    }

    button[type="submit"] {
        width: 100%;
    }

    .map-container {
        height: 350px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo {
        font-size: 22px;
    }
}