* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #b721ff 0%, #21d4fd 100%);
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo img {
    height: 50px;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(0, 102, 204, 0.3));
    }

    to {
        filter: drop-shadow(0 0 15px rgba(0, 168, 107, 0.6));
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #b721ff;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #b721ff, #21d4fd);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(183, 33, 255, 0.1);
    color: #b721ff;
}

.menu-toggle.active {
    color: #b721ff;
}

.menu-toggle.active i:before {
    content: '\f00d';
}

.hero {
    padding: 150px 0 100px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, rgba(183, 33, 255, 1), rgba(33, 212, 253, 1));
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #FF3CAC, #562B7C, #2B86C5);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.certifications {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #b721ff, #21d4fd);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

@keyframes running-border {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cert-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    padding: 3px;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg,
            #ff0000,
            #ff7300,
            #fffb00,
            #48ff00,
            #00ffd5,
            #002bff,
            #7a00ff,
            #ff00c8,
            #ff0000);
    background-size: 400%;
    animation: running-border 4s linear infinite;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cert-link {
    text-decoration: none;
    color: inherit;
    display: block;
    background: #fff;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 2rem;
}

.cert-image-container {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 2200 / 1700;
}

.cert-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.cert-placeholder {
    text-align: center;
    color: #999;
}

.cert-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #b721ff;
}

.cert-card:hover .cert-image {
    transform: scale(1.05);
}

.cert-info {
    text-align: center;
}

.cert-info h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cert-info p {
    color: #666;
    margin-bottom: 15px;
}

.cert-holder {
    background: linear-gradient(135deg, #e8f5e8, #e0f2f1);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}

.cert-date {
    color: #888;
    font-size: 0.9rem;
}

.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 102, 204, 0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.service-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, #b721ff, #21d4fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #666;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* New Course Section Styles */
.courses {
    padding: 100px 0;
    background: #f8f9fa; /* Lighter background for better contrast */
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted min-width */
    gap: 2rem;
    margin-top: 4rem;
}

.course-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.course-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.course-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333;
}

.course-description {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-button {
    display: inline-block;
    background: linear-gradient(45deg, #b721ff, #21d4fd);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.course-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(183, 33, 255, 0.3);
}

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #b721ff 0%, #21d4fd 100%);
    color: white;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #b721ff, #21d4fd);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.pricing {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
}

.pricing h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.table-container {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fdfdfd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease forwards;
    opacity: 1;
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: linear-gradient(45deg, #b721ff, #21d4fd);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-table tr:hover {
    background: #f0f8ff;
    transform: scale(1.01);
    transition: 0.3s;
}

.pricing-table td ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-table td li {
    margin: 5px 0;
}

.pricing-table td[data-label="Giá"] {
    font-weight: bold;
}

.note {
    max-width: 900px;
    margin: 30px auto;
    background: #fefce8;
    padding: 20px;
    border-left: 6px solid #facc15;
    border-radius: 8px;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

.note strong {
    color: #000;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8em;
    font-weight: bold;
    color: #fff;
}

.badge.checkpoint {
    background-color: #ffc107;
}

.badge.faq {
    background-color: #17a2b8;
}

.badge.seeding {
    background-color: #28a745;
}

.badge.verify {
    background-color: #007bff;
}

.badge.license {
    background-color: #6f42c1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =======================
Testimonials Section Styles - Cập nhật
======================== */
.testimonials {
    padding: 100px 0;
    /* Sử dụng lại nền của mục Dịch vụ để đồng bộ */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    padding-bottom: 60px; /* Thêm không gian cho pagination */
    padding-left: 10px;
    padding-right: 10px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    text-align: center; /* Đổi thành căn giữa */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; /* Căn giữa các item theo chiều ngang */
}

.testimonial-avatar-wrapper {
    width: 90px; /* Tăng kích thước bao ngoài */
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem; /* Khoảng cách với tên */
    position: relative;
    /* Hiệu ứng gradient viền */
    background: linear-gradient(45deg, #b721ff 0%, #21d4fd 100%);
    padding: 3px; /* Độ dày của viền gradient */
}

.testimonial-avatar {
    width: 100%; /* Lấp đầy wrapper */
    height: 100%; /* Lấp đầy wrapper */
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: white; /* Đảm bảo nền trắng */
    padding: 2px; /* Tạo khoảng trắng nhỏ giữa viền gradient và ảnh */
}

.testimonial-name {
    font-size: 1.35rem; /* Tăng kích thước tên */
    font-weight: 700; /* Tăng độ đậm */
    color: #333;
    margin-bottom: 0.5rem; /* Khoảng cách với sao */
}

.testimonial-stars {
    color: #facc15; /* Màu vàng cho sao */
    font-size: 1.1rem; /* Tăng kích thước sao */
    margin-bottom: 1.5rem; /* Khoảng cách với nội dung */
}

.testimonial-content {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1; /* Đảm bảo nội dung chiếm hết không gian còn lại */
    display: flex;
    align-items: center; /* Căn giữa nội dung theo chiều dọc */
}

/* Định dạng cho các nút điều hướng và pagination của Swiper */
.testimonial-slider .swiper-pagination-bullet-active {
    background: #b721ff; /* Màu chủ đạo */
}

.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    color: #b721ff; /* Màu chủ đạo */
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    
    display: none;
}
.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
    background: white;
    color: #21d4fd;
}

.testimonial-slider .swiper-button-next::after,
.testimonial-slider .swiper-button-prev::after {
    font-size: 1.5rem;
    font-weight: bold;
}


@media (max-width: 768px) {
    header .container {
        max-width: 100%;
        padding: 0;
    }
    nav {
        justify-content: center;
        width: 100%;
        height: 60px;
        padding: 0 20px;
    }
    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .logo img {
        height: 35px;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 0;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 15px 15px;
        backdrop-filter: blur(10px);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(183, 33, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 5px 15px;
    }

    .nav-links a:hover {
        background: linear-gradient(45deg, #b721ff, #21d4fd);
        color: white;
        transform: translateX(5px);
    }

    .nav-links a::after {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cert-grid,
    .course-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
	
	.services-grid {
		margin-top: 0;
	}

    .course-grid {
        grid-template-columns: 1fr;
    }

    .course-card {
        min-width: auto;
    }

    .cert-card, .service-card {
        margin: 0 10px;
    }
    
    /* Ẩn nút điều hướng slider trên di động (nếu muốn) */
    .testimonial-slider .swiper-button-next,
    .testimonial-slider .swiper-button-prev {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .pricing {
        padding: 60px 5%;
    }

    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table {
        display: block;
        width: 100%;
        white-space: nowrap;
    }

    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table th,
    .pricing-table td,
    .pricing-table tr {
        display: block;
    }

    .pricing-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .pricing-table tr {
        border: 1px solid #ddd;
        margin-bottom: 1rem;
        border-radius: 10px;
        overflow: hidden;
        white-space: normal;
        background: white;
    }

    .pricing-table tr:hover {
        transform: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .pricing-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding: 15px 15px 15px 50%;
        text-align: left;
        white-space: normal;
    }

    .pricing-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 15px;
        width: 40%;
        padding-right: 10px;
        white-space: normal;
        text-align: left;
        font-weight: bold;
        color: #333;
    }

    .pricing-table td:first-child {
        background: linear-gradient(145deg, #f0f8ff, #e0f2ff);
        font-weight: bold;
        color: #007bff;
        text-align: center;
        padding: 1rem;
        border-bottom: 2px solid #007bff;
        position: relative;
        padding-left: 1rem;
    }

    .pricing-table td:first-child:before {
        display: none;
    }
    
    .pricing-table td:last-child {
        border-bottom: none;
    }

    .pricing-table td ul {
        margin: 0;
        padding: 0;
    }

    .pricing-table td li {
        text-align: left;
        list-style: none;
        margin: 8px 0;
        position: relative;
        padding-left: 15px;
    }

    .pricing-table td li:before {
        content: "•";
        color: #007bff;
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    .pricing-table td[data-label="Giá"] {
        text-align: right;
        font-weight: bold;
    }
	
	/* Styles for Certification and Services Sliders */
    #certifications .cert-slider, #services .services-slider {
        width: 100%;
        overflow: hidden;
        padding-bottom: 40px;
        position: relative;
    }

    #certifications .cert-grid, #services .services-grid {
        display: flex;
        gap: 0;
        align-items: stretch; /* Make cards same height */
    }
    
    #certifications .cert-card, #services .service-card {
        flex-shrink: 0;
        width: 80%;
        height: auto;
        margin: 0;
    }

    #certifications .swiper-pagination {
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }

    #certifications .swiper-pagination-bullet-active {
        background: #b721ff;
    }

    /* Styles for Course Slider */
    #courses .course-slider {
        width: 100%;
        overflow: hidden;
        padding-bottom: 40px;
        position: relative;
    }

    #courses .course-grid.swiper-wrapper {
        display: flex; /* This is crucial for Swiper */
        align-items: stretch;
    }
    
    #courses .course-card.swiper-slide {
        flex-shrink: 0;
        width: 80%; /* Adjust card width in slider view */
        height: auto;
        margin: 0 10px; /* Add some margin between slides */
    }

    #courses .course-pagination.swiper-pagination {
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }

    #courses .swiper-pagination-bullet-active {
        background: #b721ff;
    }

}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .course-card {
        padding: 1.5rem;
    }

	.cert-card, .service-card {
		margin: 0 5px;
        padding: 1.5rem;
	}
    
    .testimonial-card {
        padding: 1.5rem;
    }

    .pricing {
        padding: 50px 2%;
    }

    .pricing h2 {
        font-size: 24px;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 12px 15px;
    }

}

#faq {
    padding: 60px 0;
    background-color: #f9f9f9;
}

#faq .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

#faq .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

#faq .faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

#faq .faq-question {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    user-select: none;
}

#faq .faq-question .toggle-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

#faq .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #555;
    line-height: 1.6;
}

#faq .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

#faq .faq-item.active .faq-question .toggle-icon {
    transform: rotate(45deg);
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto 0;
}

.contact .form-group {
    width: 100%;
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact input[type="text"]:focus,
.contact input[type="email"]:focus,
.contact textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 212, 253, 0.5);
    background: white;
}

.contact textarea {
    min-height: 150px;
    resize: vertical;
}

.contact button[type="submit"] {
    display: inline-block;
    background: linear-gradient(45deg, #FF3CAC, #562B7C, #2B86C5);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.contact button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}