:root {
    --primary-color: #27ae60;
    --primary-dark: #27ae60;
    --primary-light: #4a7bc8;
    --secondary-color: #27ae60;
    --accent-color: #e67e22;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --background: #f8f9fa;
    --white: #ffffff;
    --gray-light: #ecf0f1;
    --gray: #bdc3c7;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.18);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

body {
    line-height: 1.7;
    color: var(--text-color);
    background: var(--background);
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1100;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo a {
    display: flex;
    align-items: center;
    transition: var(--transition);
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }
}

.nav {
    display: flex;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 10px 18px;
    border-radius: var(--border-radius);
    position: relative;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a:hover::before {
    width: 80%;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
    padding: 0;
}

.burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
}

.hero {
    position: relative;
    height: 80vh;
    margin-top: 80px;
    overflow: hidden;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.carousel-item {
    position: relative;
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(44, 90, 160, 0.3) 100%);
    z-index: 1;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.carousel-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.carousel-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.4);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-prev { left: 30px; }
.carousel-arrow-next { right: 30px; }

.carousel-progress {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    z-index: 3;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #e67e22;
    width: 0%;
}

.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-content h1 { font-size: 2rem; }
    .carousel-content p { font-size: 1.1rem; }
    .hero { height: 85vh; }
    .carousel-arrow { width: 45px; height: 45px; }
    .carousel-arrow-prev { left: 10px; }
    .carousel-arrow-next { right: 10px; }
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(44, 90, 160, 0.3);
}

.cta-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-banner p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cta-banner .cta-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.cta-banner .cta-button:hover {
    background: white;
    color: var(--primary-color);
}

.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-icon {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-icon i {
    color: var(--primary-color);
    opacity: 0.9;
    font-size: 10rem;
    filter: drop-shadow(0 10px 20px rgba(44, 90, 160, 0.2));
    transition: var(--transition);
}

.about-icon:hover i {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 15px 30px rgba(44, 90, 160, 0.3));
}

.features {
    padding: 100px 0;
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.feature-icon i {
    font-size: 4rem;
    color: var(--primary-color);
    transition: var(--transition);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2) rotate(10deg);
}

.feature-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.contacts {
    padding: 100px 0;
    background: var(--white);
}

.contact-form {
    max-width: 550px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 28px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #e8e8e8;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    font-family: inherit;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(44, 90, 160, 0.1);
    transform: translateY(-2px);
}

.consent-block {
    margin: 30px 0;
    font-size: 0.95rem;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--border-radius);
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.6;
}

.consent-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.consent-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}

.submit-btn {
    display: inline-block;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(44, 90, 160, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.submit-btn:disabled {
    background: #a0a0a0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.error-message {
    color: #e74c3c;
    font-size: 0.95rem;
    margin: 15px 0 0;
    min-height: 20px;
    padding: 12px 16px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: var(--border-radius-sm);
    text-align: center;
}

.contact-info {
    max-width: 550px;
    margin: 50px auto 0;
    text-align: center;
    line-height: 1.8;
    background: var(--gray-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-info p {
    color: var(--text-color);
    margin: 20px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-info i {
    color: var(--primary-color);
    width: 24px;
    font-size: 1.2rem;
}

.contact-info .fa-telegram {
    color: #0088cc;
}

.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    width: 90%;
    max-width: 700px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.4s ease;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--primary-color);
    background: var(--gray-light);
}

.modal-content h2 {
    padding: 40px 40px 20px;
    color: var(--primary-color);
    font-size: 2rem;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 0;
}

.modal-body {
    padding: 0 40px 30px;
}

.modal-body h3 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.modal-body p, .modal-body ul {
    margin-bottom: 15px;
    line-height: 1.7;
}

.modal-body ul {
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
}

.modal-btn {
    display: block;
    margin: 0 auto 30px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.modal-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #27ae60;
    color: white;
    padding: 0;
    z-index: 1000;
    font-size: 0.95rem;
    display: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-main {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-main p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    font-size: 1rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    border-radius: var(--border-radius);
    padding: 12px 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.cookie-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.cookie-btn-details {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: var(--border-radius);
    padding: 12px 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.cookie-btn-details:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cookie-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    margin: 0 -15px;
    padding: 0 15px;
}

.cookie-details.open {
    max-height: 1000px;
}

.cookie-details-content {
    padding: 30px 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.cookie-details.open .cookie-details-content {
    opacity: 1;
    transform: translateY(0);
}

.cookie-details h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.cookie-details h4 {
    color: var(--white);
    margin: 25px 0 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-details h5 {
    color: var(--accent-color);
    margin: 20px 0 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-details p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-details ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.cookie-details li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.cookie-type {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

@media (max-width: 768px) {
    .cookie-main {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .cookie-main p {
        min-width: auto;
        margin-bottom: 15px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn,
    .cookie-btn-details {
        flex: 1;
        min-width: 140px;
    }

    .cookie-details-content {
        padding: 20px 0;
    }

    .cookie-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cookie-type {
        padding: 15px;
    }

    .cookie-details.open {
        max-height: 1500px;
    }
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn,
    .cookie-btn-details {
        width: 100%;
    }
}

.telegram-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #0088cc;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-telegram 2s infinite;
}

@keyframes pulse-telegram {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 136, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0);
    }
}

.telegram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 136, 204, 0.6);
    animation: none;
    background: #0077b5;
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 60px;
        right: -300px;
        width: 280px;
        height: calc(100vh - 60px);
        background: var(--white);
        transition: var(--transition);
        padding: 30px 20px;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-radius: 0 0 0 var(--border-radius-lg);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .nav-list a {
        font-size: 1.1rem;
        padding: 15px 20px;
        color: var(--primary-color);
        display: block;
        border-radius: var(--border-radius);
    }

    .nav-list a:hover {
        background: var(--primary-color);
        color: var(--white);
    }

    .hero {
        height: 70vh;
    }

    .carousel-content h1 {
        font-size: 2.2rem;
    }

    .carousel-content p {
        font-size: 1.2rem;
    }

    .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .carousel-arrow-prev {
        left: 15px;
    }

    .carousel-arrow-next {
        right: 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .container {
        width: 95%;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-icon {
        margin-top: 20px;
        min-width: auto;
    }

    .about-icon i {
        font-size: 7rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 40px 25px;
    }

    .contact-info p {
        flex-direction: column;
        gap: 5px;
    }

    .cta-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        margin-top: 10px;
        width: 100%;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-content h2 {
        padding: 30px 25px 15px;
        font-size: 1.7rem;
    }

    .modal-body {
        padding: 0 25px 25px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    .carousel-content h1 {
        font-size: 1.8rem;
    }

    .carousel-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .about-icon i {
        font-size: 5rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.visually-hidden,
.visually-hidden[type="text"] {
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}