
/* Базовые стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Хедер */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid #ff00ff;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #00ffff;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
            letter-spacing: 1px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: #00ffff;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #ff00ff;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #e0e0e0;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero секция */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/03.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 0, 255, 0.1) 0%, rgba(0, 0, 0, 0.7) 70%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #00ffff;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            animation: glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            }
            to {
                text-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.6);
            }
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: #e0e0e0;
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: #ff00ff;
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
        }
        
        .cta-button:hover {
            background-color: #00ffff;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
            transform: translateY(-3px);
        }
        
        /* Общие секции */
        section {
            padding: 80px 0;
            position: relative;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            font-size: 36px;
            text-align: center;
            margin-bottom: 50px;
            color: #00ffff;
            position: relative;
            display: inline-block;
            width: 100%;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ff00ff, transparent);
        }
        
        /* About секция */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #00ffff;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Product Description секция */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 255, 0.3);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .product-card-content {
            padding: 20px;
        }
        
        .product-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #00ffff;
        }
        
        .product-card p {
            margin-bottom: 15px;
        }
        
        .product-card a {
            color: #ff00ff;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .product-card a:hover {
            color: #00ffff;
        }
        
        /* Цены секция */
        .pricing-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .pricing-card {
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            padding: 30px;
            width: 300px;
            text-align: center;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
        }
        
        .pricing-card.featured::before {
            background: linear-gradient(90deg, #00ffff, #ff00ff);
        }
        
        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #00ffff;
        }
        
        .pricing-card .price {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #ff00ff;
        }
        
        .pricing-card .price span {
            font-size: 16px;
            color: #e0e0e0;
        }
        
        .pricing-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .pricing-card ul li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .pricing-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00ffff;
        }
        
        .pricing-card .cta-button {
            width: 100%;
        }
        
        /* Галерея секция */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-overlay h3 {
            color: #00ffff;
            margin-bottom: 5px;
        }
        
        /* Отзывы секция */
        .testimonials-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            border: 1px solid rgba(255, 0, 255, 0.3);
            text-align: center;
        }
        
        .testimonial-text {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding: 0 20px;
        }
        
        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 60px;
            position: absolute;
            color: rgba(255, 0, 255, 0.2);
            font-family: Georgia, serif;
        }
        
        .testimonial-text::before {
            top: -20px;
            left: -10px;
        }
        
        .testimonial-text::after {
            bottom: -50px;
            right: -10px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .testimonial-author-info h4 {
            color: #00ffff;
            margin-bottom: 5px;
        }
        
        .testimonial-author-info p {
            font-size: 14px;
            color: #e0e0e0;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 0, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-dot.active {
            background-color: #ff00ff;
            transform: scale(1.2);
        }
        
        /* FAQ секция */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            border: 1px solid rgba(255, 0, 255, 0.3);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: #00ffff;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 0, 255, 0.1);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: #ff00ff;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 20px 20px;
        }
        
        /* Наши преимущества */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 255, 0.3);
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
        }
        
        .advantage-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: #00ffff;
        }
        
        .advantage-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #ff00ff;
        }
        
        /* Наша команда */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-card {
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 255, 0.3);
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
        }
        
        .team-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .team-card-content {
            padding: 20px;
            text-align: center;
        }
        
        .team-card h3 {
            font-size: 22px;
            margin-bottom: 5px;
            color: #00ffff;
        }
        
        .team-card p {
            color: #e0e0e0;
            margin-bottom: 15px;
        }
        
        /* Как мы работаем */
        .process-container {
            position: relative;
        }
        
        .process-line {
            position: absolute;
            top: 50px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            z-index: 1;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            padding: 30px;
            width: 200px;
            text-align: center;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 0, 255, 0.3);
            position: relative;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #0a0a0a;
            border: 3px solid #ff00ff;
            z-index: 3;
        }
        
        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
        }
        
        .process-step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #ff00ff;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            z-index: 4;
        }
        
        .process-step h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #00ffff;
        }
        
        /* Disclaimer секция */
        .disclaimer {
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            border: 1px solid rgba(255, 0, 255, 0.3);
            font-size: 14px;
            color: #e0e0e0;
        }
        
        .disclaimer h3 {
            color: #ff00ff;
            margin-bottom: 15px;
        }
        
        /* Футер */
        footer {
            background-color: #0a0a0a;
            padding: 50px 0 30px;
            border-top: 1px solid #ff00ff;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #00ffff;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #ff00ff;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 0, 255, 0.2);
            font-size: 14px;
            color: #e0e0e0;
        }
        
        /* Форма обратной связи */
        .contact-form {
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            border: 1px solid rgba(255, 0, 255, 0.3);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #00ffff;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(10, 10, 10, 0.7);
            border: 1px solid rgba(255, 0, 255, 0.3);
            border-radius: 5px;
            color: #e0e0e0;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }
        
        .form-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: #ff00ff;
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .form-button:hover {
            background-color: #00ffff;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
            transform: translateY(-3px);
        }
        
        /* Всплывающая плашка cookie */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: rgba(20, 20, 20, 0.9);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
            border: 1px solid rgba(255, 0, 255, 0.3);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 200px;
        }
        
        .cookie-text p {
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .cookie-text a {
            color: #00ffff;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-button {
            padding: 8px 16px;
            border-radius: 5px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: #ff00ff;
            color: #fff;
            border: none;
        }
        
        .cookie-accept:hover {
            background-color: #00ffff;
        }
        
        .cookie-reject {
            background-color: transparent;
            color: #e0e0e0;
            border: 1px solid #e0e0e0;
        }
        
        .cookie-reject:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Попап после отправки формы */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: #0a0a0a;
            border-radius: 10px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
            border: 1px solid rgba(255, 0, 255, 0.3);
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .popup h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #00ffff;
        }
        
        .popup p {
            margin-bottom: 30px;
            color: #e0e0e0;
        }
        
        .popup-close {
            padding: 10px 20px;
            background-color: #ff00ff;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .popup-close:hover {
            background-color: #00ffff;
        }
        
        /* Marquee (бегущие элементы) */
        .marquee {
            background-color: rgba(20, 20, 20, 0.8);
            padding: 15px 0;
            overflow: hidden;
            white-space: nowrap;
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
            border-top: 1px solid rgba(255, 0, 255, 0.3);
            border-bottom: 1px solid rgba(255, 0, 255, 0.3);
        }
        
        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
            color: #00ffff;
            font-weight: bold;
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .process-steps {
                flex-wrap: wrap;
                justify-content: center;
                gap: 30px;
            }
            
            .process-line {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: rgba(10, 10, 10, 0.95);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
                z-index: 1001;
            }
            
            .hero h1 {
                font-size: 30px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .pricing-container {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 24px;
            }
            
            .section-title {
                font-size: 20px;
            }
            
            .testimonial-text {
                font-size: 16px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
        }

