* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 20px 40px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 20px;
    height: 100%;
}

.logo img {
    width: 30px;
    height: 30px;
    opacity: 0.9;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;

}

.nav-links a:hover {
    color: #FFA500;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn,
.nav-contact,
.nav-book {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.primary,
.nav-book {
    background: #FFA500;
    color: white;
    border: 2px solid #FFA500;
}

.btn.secondary,
.nav-contact {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn.primary:hover,
.nav-book:hover {
    background: #FF8C00;
    border-color: #FF8C00;
}

.btn.secondary:hover,
.nav-contact:hover {
    background: #333;
    color: white;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 40px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(18,18,18,1)), url('background.jpeg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.hero-content {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero.scrolled .hero-content,
.hero.scrolled .trust-indicators,
.hero.scrolled .rating,
.hero.scrolled .cta-buttons {
    opacity: 0;
    transform: translateY(20px);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 50px; 
    line-height: 1.5;
    margin-top: -20px;
}


.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.trust-indicators {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    opacity: 1;
    transform: translateY(0);
}

.indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
}

.indicator i {
    color: #FFA500;
    font-size: 1.2rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stars {
    color: #FFA500;
}

.rating span {
    color: #ffffff;
    font-weight: 500;
}

.rating img {
    width: 24px;
    height: 24px;
}

.compare {
    padding: 100px 0;
    background-color: #121212;
}

.compare h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.compare-item {
    backdrop-filter: blur(12px) saturate(157%);
    -webkit-backdrop-filter: blur(12px) saturate(157%);
    background-color: rgba(46, 44, 44, 0.79);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compare-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.compare-logo {
    text-align: center;
    margin-bottom: 30px;
}

.compare-logo span {
    font-size: 1.2rem;
    color: #cccccc;
}

.compare-features {
    list-style: none;
}

.compare-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.compare-features i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.compare-features .fa-check {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.compare-features .fa-times {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

.percorsi {
    padding: 100px 0;
    background-color: #121212;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 15px 30px;
    border: none;
    background: transparent;
    color: #cccccc;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #FFA500;
    border-bottom-color: #FFA500;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.level-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.level-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.level-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.level-description {
    flex: 1;
}

.level-description h3 {
    color: #FFA500;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.level-description .age {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    margin-bottom: 40px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features i {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.about {
    padding: 100px 0;
    background-color: #121212;
}

.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: #FFA500;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-section {
    padding: 100px 0;
    background-color: #121212;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    order: 1;
}

.map-container {
    order: 2;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #FFA500;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 24px;
    color: #FFA500;
    width: 24px;
}

.contact-text h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-text p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.social-links {
    padding: 100px 0;
    background-color: #121212;
}

.social-links h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFA500;
    margin-bottom: 50px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-button i {
    font-size: 24px;
}

.social-button span {
    font-weight: 500;
    font-size: 1.1rem;
}

.social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-button.facebook:hover {
    background: #4267B2;
}

.social-button.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-button.tiktok:hover {
    background: #000000;
    border-color: #00f2ea;
}

.social-button.youtube:hover {
    background: #FF0000;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-post {
    flex: 1;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.social-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-post:hover img {
    transform: scale(1.1);
}

.social-post .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.social-post:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-post i {
    font-size: 24px;
    color: white;
}

.social-post span {
    color: white;
    font-weight: 500;
}

.social-post.instagram .overlay i {
    color: #E1306C;
}

.social-post.facebook .overlay i {
    color: #4267B2;
}

.social-post.tiktok .overlay i {
    color: #00f2ea;
}

.social-post .post-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-post .profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #FFA500;
}

.social-post .post-info {
    flex-grow: 1;
}

.social-post .username {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.social-post .post-date {
    color: #aaa;
    font-size: 0.8rem;
}

.social-post .post-actions {
    position: absolute;
    bottom: 60px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.social-post .action-button {
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-post .action-button:hover {
    transform: scale(1.2);
}

.social-post .action-count {
    color: white;
    font-size: 12px;
    margin-top: 4px;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content,
.trust-indicators,
.rating {
    animation: fadeIn 1s ease-out forwards;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: transform 0.3s ease;
    width: 100%;
}

@media (max-width: 768px) {
    .social-buttons {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #FFA500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-top: 10px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(18, 18, 18, 0.98);
    z-index: 1000;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    font-size: 24px;
    color: #FFA500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #FFA500;
}

@media (max-width: 768px) {
    .level-content {
        flex-direction: column;
        gap: 30px;
    }

    .level-image {
        width: 100%;
        max-width: none;
        margin-right: 0;
    }

    .level-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 15px;
    }

    .level-description {
        width: 100%;
        padding: 0;
    }

    .about-container {
        flex-direction: column;
        padding: 20px;
    }

    .about-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    .about-content {
        width: 100%;
        padding: 0;
    }

    .tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab-btn {
        width: calc(33.33% - 7px);
        padding: 10px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        padding: 0 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-content {
        margin: 80px 20px 40px;
        padding: 20px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials {
    padding: 80px 0;
    background-color: #121212;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonials h2 {
    color: #FFA500;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}

.testimonials-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

.review-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.review-link:hover {
    color: #FFA500;
}

.testimonials-slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    cursor: grab;
    scroll-behavior: smooth;
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    min-width: 300px;
    flex: 0 0 calc(100% - 40px);
    display: block;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.testimonial-card:active {
    cursor: grabbing;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #FFA500;
}

.testimonial-text {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initial {
    width: 40px;
    height: 40px;
    background: #FFA500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #ffffff;
    margin: 0;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-content {
        margin: 80px 20px 40px;
        padding: 20px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.leash-training {
    padding: 100px 0;
    background-color: #121212;
}

@media (max-width: 768px) {
    .leash-training .about-container {
        flex-direction: column;
        gap: 30px;
    }

    .leash-training .about-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .leash-training .about-image img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 400px;
        border-radius: 15px;
        object-fit: contain;
    }

    .leash-training .about-content {
        width: 100%;
        padding: 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    order: 1;
}

.map-container {
    order: 2;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #FFA500;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 24px;
    color: #FFA500;
    width: 24px;
}

.contact-text h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-text p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

.social-links {
    padding: 100px 0;
    background-color: #121212;
}

.social-links h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFA500;
    margin-bottom: 50px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-button i {
    font-size: 24px;
}

.social-button span {
    font-weight: 500;
    font-size: 1.1rem;
}

.social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-button.facebook:hover {
    background: #4267B2;
}

.social-button.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-button.tiktok:hover {
    background: #000000;
    border-color: #00f2ea;
}

.social-button.youtube:hover {
    background: #FF0000;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-post {
    flex: 1;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.social-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-post:hover img {
    transform: scale(1.1);
}

.social-post .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.social-post:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.social-post i {
    font-size: 24px;
    color: white;
}

.social-post span {
    color: white;
    font-weight: 500;
}

.social-post.instagram .overlay i {
    color: #E1306C;
}

.social-post.facebook .overlay i {
    color: #4267B2;
}

.social-post.tiktok .overlay i {
    color: #00f2ea;
}

.social-post .post-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-post .profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #FFA500;
}

.social-post .post-info {
    flex-grow: 1;
}

.social-post .username {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.social-post .post-date {
    color: #aaa;
    font-size: 0.8rem;
}

.social-post .post-actions {
    position: absolute;
    bottom: 60px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.social-post .action-button {
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-post .action-button:hover {
    transform: scale(1.2);
}

.social-post .action-count {
    color: white;
    font-size: 12px;
    margin-top: 4px;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content,
.trust-indicators,
.rating {
    animation: fadeIn 1s ease-out forwards;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: transform 0.3s ease;
    width: 100%;
}

@media (max-width: 768px) {
    .social-buttons {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #FFA500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-top: 10px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(18, 18, 18, 0.98);
    z-index: 1000;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-close {
    font-size: 24px;
    color: #FFA500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #FFA500;
}

@media (max-width: 768px) {
    .level-content {
        flex-direction: column;
        gap: 30px;
    }

    .level-image {
        width: 100%;
        max-width: none;
        margin-right: 0;
    }

    .level-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 15px;
    }

    .level-description {
        width: 100%;
        padding: 0;
    }

    .about-container {
        flex-direction: column;
        padding: 20px;
    }

    .about-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    .about-content {
        width: 100%;
        padding: 0;
    }

    .tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab-btn {
        width: calc(33.33% - 7px);
        padding: 10px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        padding: 0 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-content {
        margin: 80px 20px 40px;
        padding: 20px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials {
    padding: 80px 0;
    background-color: #121212;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonials h2 {
    color: #FFA500;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}

.testimonials-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

.review-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.review-link:hover {
    color: #FFA500;
}

.testimonials-slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    cursor: grab;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    min-width: 300px;
    flex: 0 0 calc(100% - 40px);
    display: block;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.testimonial-card:active {
    cursor: grabbing;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #FFA500;
}

.testimonial-text {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initial {
    width: 40px;
    height: 40px;
    background: #FFA500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #ffffff;
    margin: 0;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-content {
        margin: 80px 20px 40px;
        padding: 20px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials {
    padding: 80px 0;
    background-color: #121212;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonials h2 {
    color: #FFA500;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}

.testimonials-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

.review-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.review-link:hover {
    color: #FFA500;
}

.testimonials-slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    cursor: grab;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    min-width: 300px;
    flex: 0 0 calc(100% - 40px);
    display: block;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.testimonial-card:active {
    cursor: grabbing;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #FFA500;
}

.testimonial-text {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initial {
    width: 40px;
    height: 40px;
    background: #FFA500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #ffffff;
    margin: 0;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-content {
        margin: 80px 20px 40px;
        padding: 20px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials {
    padding: 80px 0;
    background-color: #121212;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonials h2 {
    color: #FFA500;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}

.testimonials-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

.review-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.review-link:hover {
    color: #FFA500;
}

.testimonials-slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    cursor: grab;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    min-width: 300px;
    flex: 0 0 calc(100% - 40px);
    display: block;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.testimonial-card:active {
    cursor: grabbing;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #FFA500;
}

.testimonial-text {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initial {
    width: 40px;
    height: 40px;
    background: #FFA500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #ffffff;
    margin: 0;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-content {
        margin: 80px 20px 40px;
        padding: 20px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials {
    padding: 80px 0;
    background-color: #121212;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonials h2 {
    color: #FFA500;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}

.testimonials-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

.review-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.review-link:hover {
    color: #FFA500;
}

.testimonials-slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    cursor: grab;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    min-width: 300px;
    flex: 0 0 calc(100% - 40px);
    display: block;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.testimonial-card:active {
    cursor: grabbing;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #FFA500;
}

.testimonial-text {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initial {
    width: 40px;
    height: 40px;
    background: #FFA500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #ffffff;
    margin: 0;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-content {
        margin: 80px 20px 40px;
        padding: 20px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials {
    padding: 80px 0;
    background-color: #121212;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonials h2 {
    color: #FFA500;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}

.testimonials-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

.review-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.review-link:hover {
    color: #FFA500;
}

.testimonials-slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    cursor: grab;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    min-width: 300px;
    flex: 0 0 calc(100% - 40px);
    display: block;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.testimonial-card:active {
    cursor: grabbing;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #FFA500;
}

.testimonial-text {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initial {
    width: 40px;
    height: 40px;
    background: #FFA500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #ffffff;
    margin: 0;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-content {
        margin: 80px 20px 40px;
        padding: 20px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials {
    padding: 80px 0;
    background-color: #121212;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonials h2 {
    color: #FFA500;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}

.testimonials-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

.review-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.review-link:hover {
    color: #FFA500;
}

.testimonials-slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    min-height: 300px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    cursor: grab;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    min-width: 300px;
    flex: 0 0 calc(100% - 40px);
    display: block;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.testimonial-card:active {
    cursor: grabbing;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #FFA500;
}

.testimonial-text {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initial {
    width: 40px;
    height: 40px;
    background: #FFA500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    color: #ffffff;
    margin: 0;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .testimonial-card {
        min-width: 280px;
    }
}
