* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #000000;
    background-color: #000000;
    height: 100%;
    position: relative;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px;
    font-family: 'Montserrat', sans-serif;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    box-sizing: border-box;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 100px;
    width: 150px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 100px;
    flex-grow: 1;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffcc00;
}

.btn {
    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    color: #111;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(231, 186, 3, 0.4);
    letter-spacing: 1px;
    font-weight: bold;
    margin-left: 20px;
    flex-shrink: 0;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
    color: #f8f8f8;
    padding-top: 250px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 1) 100%), 
                url('Images/hero-bg.png') no-repeat center center/cover;
    margin-bottom: -50px;
}

.hero-content {
    position: relative;
    color: #f8f8f8;
    max-width: 1000px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 80px;
    text-align: center;
    margin-bottom: 40px;
}

.hero-subtext {
    font-size: 60px;
    font-weight: normal;
    margin-top: 100px;
    text-align: center;
    color: #f8f8f8;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.hero-content p {
    font-size: 25px;
    padding: 20px;
    margin-bottom: 50px;
}

.card-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 75px;
    padding: 200px 20px;
    background-color: transparent;
    position: relative;
    margin-top: 0px;
}

.card-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    width: 500px;
    height: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.7s ease, box-shadow 0.7s ease;
}

.card .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: #dbb620;
    border-radius: 20%;
}

.card h3 {
    font-size: 18px;
    color: #f8f8f8;
    margin: 0;
    font-weight: bold;
}

.card p {
    font-size: 14px;
    color: #aaa;
    margin-top: 110px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
    background-color: #FFD700;
    border: 2px solid #ffcc00;
    color: #111;
}

.card:hover h3, .card:hover p {
    color: #111;
}

.countries-section {
    position: relative;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 60px;
}

.countries-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5);
}

.countries-content {
    max-width: 600px;
}

.countries-content h1 {
    font-size: 60px;
    margin-bottom: 100px;
}

.countries-content p {
    padding-bottom: 350px;
    font-size: 20px;
    line-height: 1.6;
}

.slider-section {
    position: relative;
    width: 100%;
    margin-top: -200px;
    padding-bottom: 200px;
}

.countries-slider-container {
    position: relative;
    overflow: hidden;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.countries-slider {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.countries-slider:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.countries-slider a {
    flex: 0 0 auto;
    padding: 20px;
    text-align: center;
    background-color: #111;
    border: 2px solid #808080;
    border-radius: 10px;
    margin: 0 5px;
}

.countries-slider span {
    font-size: 50px;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
}

button.prev, button.next {
    display: none;
}

.mobile-gg {
    background-color: #202020;
    color: #ffffff;
    padding: 100px 50px;
    position: relative;
    border-radius: 50px;
    clear: both;
    margin-top: 20px;
    margin-left: 50px;
    margin-right: 50px;
    max-width: calc(100% - 100px);
}

.mobile-gg-content {
    max-width: 90%;
    margin: 0 auto;
    text-align: left;
    padding-left: 20px;
    position: relative;
}

.mobile-gg-content h1 {
    font-size: 60px;
    margin-bottom: 40px;
}

.mobile-gg-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.mobile-gg-content .btn {
    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    color: #111;
    border: none;
    padding: 20px 40px;
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(231, 186, 3, 0.4);
    letter-spacing: 1px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
}

.features-content {
    margin-top: 20px;
}

.feature-heading {
    font-size: 50px;
    margin: 20px 0;
}

.feature-box {
    display: block;
    padding: 10px 20px;
    background-color: #202020;
    border-radius: 10px;
    transition: background 0.5s ease;
}

.feature-box:hover {
    background: #ffcc00;
}

.feature-text {
    color: #ffcc00;
    cursor: pointer;
    display: inline-block;
    transition: color 0.5s ease;
}

.feature-box:hover .feature-text {
    color: #111;
}

.flip-card-heading {
    font-size: 50px;
    color: #ffffff;
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.flip-card-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1700px;
    margin: 0 auto;
}

.flip-card {
    perspective: 1000px;
    width: 33.33%;
    height: 800px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.flip-card-front {
    z-index: 2;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: #ffcc00;
    color: #111;
}

.flip-card-icon {
    width: auto;
    height: 50px;
    border-radius: 20%;
    margin-bottom: 20px;
}

.flip-card-front h3, .flip-card-back h3 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.flip-card-front p, .flip-card-back p {
    font-size: 16px;
    line-height: 1.6;
}

.feature-image-container {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.feature-image {
    max-width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: block;
}

.interactive-section {
    background: linear-gradient(to bottom, #312017, #6F3C1C);
    padding: 70px 50px;
    position: relative;
    border-radius: 50px;
    margin-top: 20px;
    margin-left: 50px;
    margin-right: 50px;
    max-width: calc(100% - 100px);
    text-align: center;
    color: #ffffff;
    transition: background 1s ease, color 1s ease;
}

.interactive-content {
    max-width: 90%;
    margin: 0 auto;
}

.interactive-content h1 {
    font-size: 60px;
    margin-bottom: 60px;
    transition: color 1s ease;
}

.interactive-text {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #ffcc00;
    letter-spacing: 1px;
    font-weight: bold;
    transition: color 1s ease;
}

.interactive-section:hover {
    background: linear-gradient(to bottom, #ffd901, #dfc800);
    color: #000000;
}

.interactive-section:hover h1,
.interactive-section:hover .interactive-text {
    color: #000000;
}

.double-slider-section {
    background-color: #151515;
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    margin-top: 20px;
    max-width: 100%;
    overflow: hidden;
}

.double-slider-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    padding: 0 50px;
}

.double-slider-content h1 {
    font-size: 60px;
    margin-bottom: 40px;
    color: #ffffff;
}

.double-slider-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 60px;
    color: #aaa;
}

.slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.slider-container {
    overflow: hidden;
    width: 100%;
    padding: -50px;
    position: relative;
}

.slider {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.slider-left .slider {
    animation: slideLeft 250s linear infinite;
}

.slider-right .slider {
    animation: slideRight 230s linear infinite;
}

.slider:hover {
    animation-play-state: paused;
}

.slider img {
    width: auto;
    height: 150px;
    padding-left: 50px;
    padding-right: 50px;
    object-fit: cover;
    margin: 2px;
    background-color: #202020;
    border-radius: 15px;
    flex-shrink: 0;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.sport-picture {
    background-color: #000000;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
    margin-top: 30px;
    max-width: 100%;
    overflow: hidden;
}

.sport-picture-content {
    position: relative;
    max-width: 1650px;
    margin: 0 auto;
    text-align: center;
}

.sport-image {
    width: 1650px;
    height: 750px;
    border-radius: 25px;
    object-fit: cover;
    display: block;
    position: relative;
}

.laptop-gg {
    background-color: #000000;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
    margin-top: 100px;
    max-width: 100%;
    overflow: hidden;
}

.laptop-gg-content {
    position: relative;
    max-width: 1650px;
    margin: 0 auto;
    text-align: center;
}

.laptop-image {
    width: 1650px;
    height: 1000px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    position: relative;
}

.stats {
    background-color: #151515;
    padding: 100px 50px;
    border-radius: 40px;
    position: relative;
    margin-top: 20px;
    max-width: 100%;
    overflow: hidden;
}

.stats-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.stats-content h1 {
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 60px;
    font-family: 'Montserrat', sans-serif;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.stats-box {
    position: relative;
    width: 33.33%;
    max-width: 500px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #000000, #312601);
}

.stats-image {
    width: 400px;
    height: auto;
    position: relative;
}

.stats-text {
    position: absolute;
    bottom: 20px;
    text-align: center;
    color: #ffffff;
}

.stats-text p {
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.stats-text .btn {
    background: #F8C615;
    color: #111;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(231, 186, 3, 0.4);
    letter-spacing: 1px;
    font-weight: bold;
}

.call-to-action {
    position: relative;
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 100px 50px;
    margin-top: 20px;
    overflow: hidden;
    display: flex;
    align-items: left;
}

.cta-content {
    max-width: 600px;
    color: #ffffff;
    text-align: left;
    z-index: 1;
}

.cta-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.cta-content h2 {
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
}

.cta-content .btn {
    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    color: #111;
    border: none;
    padding: 15px 35px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(231, 186, 3, 0.4);
    letter-spacing: 1px;
    font-weight: bold;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.footer {
    background-color: #222222;
    color: #ffffff;
    padding: 60px 50px 20px;
    position: relative;
    margin-top: 20px;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
}

.footer-warning-section {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.048);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-warning {
    display: inline-block;
    text-align: center;
}

.footer-warning h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffcc00;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.footer-warning p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
}

.footer-warning-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.footer-warning-logo {
    width: 80px;
    height: auto;
    display: block;
}

.footer-warning-logo-2 {
    width: 250px;
    height: auto;
    display: block;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo-img {
    max-height: 100px;
    width: 150px;
}

.footer-links, .footer-contact, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffcc00;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc00;
}

.footer-contact p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
}

.footer-social .social-icons {
    display: flex;
    gap: 20px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    max-width: 1600px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

.footer-btn {
    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    color: #111;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(231, 186, 3, 0.4);
    letter-spacing: 1px;
    font-weight: bold;
}

.language-switcher {
    display: inline-block;
    position: relative;
}

#google_translate_element {
    display: inline-block;
}

.goog-te-combo {
    background: transparent;
    color: #fff;
    border: 1px solid #ffcc00;
    padding: 8px 15px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border-radius: 10px;
    background-color: #222;
    transition: all 0.3s ease;
}

.goog-te-combo:hover {
    background: #ffcc00;
    color: #111;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .header {
        padding: 8px 30px;
    }
    .nav-links {
        gap: 40px;
    }
    .logo-img {
        max-height: 80px;
        width: 130px;
    }
    .nav-links a {
        font-size: 18px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
    .hero {
        height: 70vh;
        padding-top: 120px;
    }
    .hero-content h1 {
        font-size: 60px;
    }
    .hero-subtext {
        font-size: 40px;
        margin-top: 70px;
    }
    .hero-content p {
        font-size: 20px;
        padding: 15px;
    }
    .card-section {
        padding: 150px 20px;
        gap: 50px;
    }
    .card-container {
        gap: 50px;
    }
    .card {
        width: 400px;
        height: 250px;
    }
    .card p {
        margin-top: 80px;
    }
    .mobile-gg {
        padding: 80px 40px;
        margin-left: 30px;
        margin-right: 30px;
        max-width: calc(100% - 60px);
    }
    .mobile-gg-content h1 {
        font-size: 50px;
    }
    .mobile-gg-content p {
        font-size: 18px;
    }
    .mobile-gg-content .btn {
        padding: 15px 30px;
        font-size: 20px;
    }
    .feature-heading {
        font-size: 40px;
    }
    .flip-card-heading {
        font-size: 40px;
    }
    .flip-card-container {
        gap: 20px;
    }
    .flip-card {
        height: 600px;
    }
    .flip-card-front h3, .flip-card-back h3 {
        font-size: 24px;
    }
    .flip-card-front p, .flip-card-back p {
        font-size: 14px;
    }
    .feature-image-container {
        max-width: 250px;
    }
    .interactive-section {
        padding: 60px 40px;
        margin-left: 30px;
        margin-right: 30px;
        max-width: calc(100% - 60px);
    }
    .interactive-content h1 {
        font-size: 50px;
    }
    .double-slider-content h1 {
        font-size: 50px;
    }
    .double-slider-content p {
        font-size: 18px;
    }
    .slider img {
        height: 120px;
    }
    .sport-image {
        width: 100%;
        height: auto;
        max-height: 400px;
    }
    .laptop-image {
        width: 100%;
        height: auto;
        max-height: 1000px;
    }
    .stats {
        padding: 80px 40px;
    }
    .stats-content h1 {
        font-size: 50px;
    }
    .stats-box {
        height: 400px;
    }
    .stats-image {
        width: 300px;
    }
    .call-to-action {
        height: 60vh;
        padding: 80px 40px;
    }
    .cta-content h1 {
        font-size: 50px;
    }
    .cta-content h2 {
        font-size: 24px;
    }
    .footer {
        padding: 40px 40px 20px;
    }
    .footer-content {
        gap: 30px;
    }
    .footer-logo-img {
        max-height: 80px;
        width: 120px;
    }
    .footer-links h3, .footer-contact h3, .footer-social h3 {
        font-size: 20px;
    }
    .footer-warning-section {
        padding: 25px;
        margin-bottom: 30px;
    }
    .footer-warning h3 {
        font-size: 20px;
    }
    .footer-warning-logo {
        width: 50px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 8px 20px;
        flex-direction: column;
        align-items: center;
        background: rgba(0, 0, 0, 0.9);
    }
    .logo {
        margin-bottom: 10px;
    }
    .logo-img {
        max-height: 80px;
        width: 120px;
    }
    nav {
        width: 100%;
        margin: 10px 0;
    }
    .nav-links {
        gap: 20px;
        justify-content: center;
        padding: 0;
    }
    .nav-links a {
        font-size: 16px;
    }
    .btn {
        padding: 8px 15px;
        font-size: 14px;
        margin-left: 0;
        margin-top: 10px;
    }
    .menu-toggle {
        display: flex;
    }
    nav {
        display: none;
        width: 100%;
    }
    .header-btn {
        display: none;
    }
    nav.active {
        display: block;
    }
    .header.active {
        height: auto;
        padding-bottom: 20px;
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .language-switcher {
        margin-top: 10px;
    }
    .goog-te-combo {
        padding: 6px 12px;
        font-size: 14px;
    }
    .hero {
        height: 60vh;
        padding-top: 100px;
        margin-bottom: -50px;
    }
    .hero-content h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .hero-subtext {
        font-size: 30px;
        margin-top: 50px;
    }
    .hero-content p {
        font-size: 18px;
        padding: 10px;
        margin-bottom: 30px;
    }
    .card-section {
        padding: 100px 15px;
        gap: 30px;
    }
    .card-container {
        width: 100%;
        gap: 30px;
    }
    .card {
        width: 100%;
        height: auto;
        min-height: 200px;
    }
    .card p {
        margin-top: 60px;
    }
    .mobile-gg {
        padding: 60px 20px;
        margin-left: 15px;
        margin-right: 15px;
        max-width: calc(100% - 30px);
        border-radius: 30px;
    }
    .mobile-gg-content {
        text-align: center;
    }
    .mobile-gg-content h1 {
        font-size: 36px;
    }
    .mobile-gg-content p {
        font-size: 16px;
    }
    .mobile-gg-content .btn {
        padding: 12px 25px;
        font-size: 18px;
    }
    .feature-heading {
        font-size: 30px;
    }
    .flip-card-heading {
        font-size: 30px;
        text-align: center;
    }
    .flip-card-container {
        flex-direction: column;
        gap: 30px;
    }
    .flip-card {
        width: 100%;
        height: 400px;
    }
    .feature-image-container {
        position: static;
        transform: none;
        margin: 20px auto;
        max-width: 200px;
    }
    .interactive-section {
        padding: 40px 20px;
        margin-left: 15px;
        margin-right: 15px;
        max-width: calc(100% - 30px);
        border-radius: 30px;
    }
    .interactive-content h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .double-slider-section {
        padding: 60px 0;
    }
    .double-slider-content {
        padding: 0 20px;
    }
    .double-slider-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .double-slider-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .slider img {
        height: 100px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .sport-picture {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sport-image {
        max-height: 300px;
    }
    .laptop-gg {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 60px;
    }
    .laptop-image {
        max-height: 700px;
    }
    .stats {
        padding: 60px 20px;
        border-radius: 30px;
    }
    .stats-content h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    .stats-box {
        width: 100%;
        height: 300px;
    }
    .stats-image {
        width: 200px;
    }
    .stats-text p {
        font-size: 16px;
    }
    .call-to-action {
        height: auto;
        min-height: 50vh;
        padding: 60px 20px;
        border-radius: 20px;
    }
    .cta-content {
        max-width: 100%;
    }
    .cta-content h1 {
        font-size: 36px;
    }
    .cta-content h2 {
        font-size: 20px;
    }
    .cta-content .btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    .footer {
        padding: 30px 20px 15px;
        border-radius: 30px 30px 0 0;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    .footer-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    .footer-warning-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    .footer-warning-logo {
        width: 45px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 8px 15px;
    }
    .nav-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .logo-img {
        max-height: 80px;
        width: 120px;
    }
    .goog-te-combo {
        padding: 5px 10px;
        font-size: 12px;
    }
    .hero {
        height: auto;
        min-height: 60vh;
        padding: 100px 10px 50px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-subtext {
        font-size: 24px;
        margin-top: 40px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .card-section {
        padding: 80px 10px;
    }
    .card {
        min-height: 180px;
    }
    .card .card-header {
        flex-direction: column;
        gap: 5px;
    }
    .card h3 {
        font-size: 16px;
        text-align: center;
    }
    .card p {
        font-size: 12px;
        margin-top: 50px;
    }
    .mobile-gg {
        padding: 40px 15px;
        margin-left: 10px;
        margin-right: 10px;
        max-width: calc(100% - 20px);
        border-radius: 20px;
    }
    .mobile-gg-content h1 {
        font-size: 28px;
    }
    .mobile-gg-content p {
        font-size: 14px;
    }
    .mobile-gg-content .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
    .feature-heading {
        font-size: 24px;
    }
    .flip-card-heading {
        font-size: 24px;
    }
    .flip-card {
        height: 350px;
    }
    .flip-card-front h3, .flip-card-back h3 {
        font-size: 20px;
    }
    .flip-card-front p, .flip-card-back p {
        font-size: 12px;
    }
    .feature-image-container {
        max-width: 150px;
    }
    .interactive-section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
        max-width: calc(100% - 20px);
        border-radius: 20px;
    }
    .interactive-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .double-slider-section {
        padding: 40px 0;
    }
    .double-slider-content {
        padding: 0 15px;
    }
    .double-slider-content h1 {
        font-size: 28px;
    }
    .double-slider-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .slider img {
        height: 80px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .sport-picture {
        padding-left: 15px;
        padding-right: 15px;
    }
    .sport-image {
        max-height: 200px;
    }
    .laptop-gg {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 40px;
    }
    .laptop-image {
        max-height: 500px;
    }
    .stats {
        padding: 40px 15px;
        border-radius: 20px;
    }
    .stats-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .stats-box {
        height: 250px;
    }
    .stats-image {
        width: 150px;
    }
    .stats-text p {
        font-size: 14px;
    }
    .stats-text .btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    .call-to-action {
        padding: 40px 15px;
        border-radius: 15px;
    }
    .cta-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .cta-content h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .cta-content .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .footer {
        padding: 20px 15px 10px;
        border-radius: 20px 20px 0 0;
    }
    .footer-links h3, .footer-contact h3, .footer-social h3 {
        font-size: 18px;
    }
    .footer-links a, .footer-contact p {
        font-size: 14px;
    }
    .social-icon img {
        width: 25px;
        height: 25px;
    }
    .footer-bottom p {
        font-size: 12px;
    }
    .footer-warning-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    .footer-warning h3 {
        font-size: 18px;
    }
    .footer-warning p {
        font-size: 14px;
    }
    .footer-warning-logo {
        width: 40px;
    }
}