  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #0a0a0a;
            overflow-x: hidden;
        }
        main {
            padding-top: 60px; 
        }
        ul {
            list-style: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section {
            padding: 5rem 0;
        }

        .section--dark {
            background-color: #0a0a0a;
            color: #fff;
        }

        .section--light {
            background-color: #f8f9fa;
            color: #333;
        }

        .section--gradient {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
        }

        
        .title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            font-weight: 600;
            margin-bottom: 1rem;
            color: #00d4ff;
        }

        .text {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .header__container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header__logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #00d4ff;
            text-decoration: none;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header__nav {
            display: flex;
            gap: 2rem;
        }

        
        .header__burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            background: none;
            border: none;
            position: relative;
        }

        .header__burger-line {
            width: 25px;
            height: 3px;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
            display: block;
        }

        .header__burger--active .header__burger-line:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .header__burger--active .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger--active .header__burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .header__nav--mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transition: right 0.3s ease;
            z-index: 1000;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header__nav--mobile.active {
            right: 0;
        }

        .header__overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .header__overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .header__link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .header__link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            transition: width 0.3s ease;
        }

        .header__link:hover {
            color: #00d4ff;
        }

        .header__link:hover::after {
            width: 100%;
        }

        
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.1)), 
                        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('./assets/img1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero__content {
            text-align: center;
            max-width: 800px;
            z-index: 2;
        }

        .hero__title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 4px 20px rgba(0, 212, 255, 0.3); }
            to { text-shadow: 0 4px 30px rgba(255, 107, 53, 0.5); }
        }

        .hero__description {
            font-size: 1.25rem;
            color: #fff;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .hero__buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero__button {
            display: inline-block;
            transition: all 0.3s ease;
            padding: 0.1rem 0.1rem;
            color: #fff;
            text-decoration: none;
            border-radius: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
        }
        .hero__button img {
            width: 200px;
            height: 100px;
            vertical-align: middle;
            margin-right: 0.5rem;
            object-fit: contain;
        }

        .hero__button:hover {
            transform: translateY(-5px) scale(1.05);
        }

        
        .about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about__content {
            padding: 2rem;
        }

        .about__image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            height: 400px;
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.1));
        }

        .about__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .about__image:hover img {
            transform: scale(1.05);
        }

        
        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card--light {
            background: linear-gradient(145deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.1));
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .card:hover::before {
            left: 100%;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
        }

        .card__image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #00d4ff20, #ff6b3520);
        }

        .card__title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #00d4ff;
            margin-bottom: 1rem;
        }

        .card__title--dark {
            color: #333;
        }

        .card__description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .card__description--dark {
            color: #666;
        }

        
        .gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .gallery__item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 16/9;
            cursor: pointer;
            transition: all 0.3s ease;
            background: linear-gradient(45deg, #00d4ff20, #ff6b3520);
        }

        .gallery__item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 212, 255, 0.3), rgba(255, 107, 53, 0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .gallery__item:hover::before {
            opacity: 1;
        }

        .gallery__item:hover {
            transform: scale(1.05);
        }

        .gallery__item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #00d4ff, #ff6b35);
            transform: translateX(-50%);
        }

        .timeline__item {
            position: relative;
            margin: 3rem 0;
            padding: 2rem;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 45%;
            animation: fadeInUp 0.6s ease-out;
        }

        .timeline__item--left {
            left: 0;
        }

        .timeline__item--right {
            left: 55%;
        }

        .timeline__item::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            border-radius: 50%;
            transform: translateY(-50%);
        }

        .timeline__item--left::before {
            right: -60px;
        }

        .timeline__item--right::before {
            left: -60px;
        }

        .timeline__date {
            font-size: 0.9rem;
            color: #00d4ff;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .timeline__title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .timeline__description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        
        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature {
            text-align: center;
            padding: 3rem 2rem;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature:hover::before {
            transform: scaleX(1);
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
        }

        .feature__icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature__title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
        }

        .feature__description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        
        .faq {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq__item {
            margin-bottom: 1rem;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .faq__item--light {
            background: linear-gradient(145deg, rgba(0, 212, 255, 0.05), rgba(255, 107, 53, 0.05));
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .faq__question {
            width: 100%;
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq__question--light {
            color: #333;
        }

        .faq__question:hover {
            color: #00d4ff;
        }

        .faq__question::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .faq__question--active::after {
            transform: rotate(45deg);
        }

        .faq__answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .faq__answer--light {
            color: #666;
        }

        .faq__answer--active {
            padding: 0 2rem 1.5rem;
            max-height: 200px;
        }

        
        .cta {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.1));
            border-radius: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta__button {
            display: inline-block;
            margin-top: 2rem;
            color: #fff;
            text-decoration: none;
            border-radius: 15px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .cta__button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
        }

        
        .footer {
            background-color: #000;
            padding: 3rem 0 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer__container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .footer__logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #00d4ff;
            text-decoration: none;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer__nav {
            display: flex;
            gap: 2rem;
        }

        .footer__link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .footer__link:hover {
            color: #00d4ff;
        }

        .footer__copyright {
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        
        @media (max-width: 768px) {
            .header__nav {
                display: none;
            }

            .header__burger {
                display: flex;
            }

            .about {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .features {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 2rem;
            }

            .timeline__item {
                width: calc(100% - 4rem);
                left: 4rem !important;
            }

            .timeline__item::before {
                left: -3rem !important;
            }

            .hero__buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer__container {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .footer__nav {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .section {
                padding: 3rem 0;
            }

            .gallery {
                grid-template-columns: 1fr;
            }

            .header__burger {
                display: flex;
            }
        }
        .section--contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section--contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact__subtitle {
    font-size: 1.2rem;
    text-align: center;
    opacity: 0.9;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact__info {
    padding: 2rem;
}

.contact__info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #00d4ff;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.contact__icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    border-radius: 12px;
    margin-top: 0.5rem;
}

.contact__details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact__details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}


.contact__form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 0.95rem;
}

.form__input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form__input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.form__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 3rem;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form__submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.form__submit:active {
    transform: translateY(-1px);
}

.form__submit--loading {
    pointer-events: none;
}

.form__submit--loading .form__submit-text {
    opacity: 0;
}

.form__loader {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form__submit--loading .form__loader {
    opacity: 1;
}

.loader__spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

.notification--show {
    top: 2rem;
    opacity: 1;
}

.notification__content {
    background: linear-gradient(145deg, #00d4ff, #0099cc);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 320px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notification__icon {
    font-size: 2rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.notification__text h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.notification__text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

.notification__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: auto;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.notification__close:hover {
    background: rgba(255, 255, 255, 0.2);
}


@media (max-width: 768px) {
    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact__form {
        padding: 1.5rem;
    }
    
    .contact__item {
        padding: 1rem;
    }
    
    .notification__content {
        margin: 0 1rem;
        min-width: auto;
        width: calc(100% - 2rem);
    }
}

@media (max-width: 480px) {
    .contact__title {
        font-size: 2rem;
    }
    
    .contact__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .form__input {
        padding: 0.875rem 1rem;
    }
    
    .contact__icon {
        font-size: 1.5rem;
        min-width: 40px;
        height: 40px;
    }
}