* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Exo 2', sans-serif;
    scroll-behavior: smooth;
}

/* Fix pour éviter les débordements sur mobile */
img {
    max-width: 100%;
    height: auto;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 70px;
    background-image: linear-gradient(to bottom right, #39d2e3, #394ae3);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    width: 90%;
    max-width: 1400px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo-container {
    cursor:pointer;
    height:50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-land {
    width:200px;
    height: 200px;
    margin-bottom:20px;
    border-radius: 50%;

}

.logo-container img {
    width:30px;
    height: 30px;
    border-radius:50%;
}

.logo-container .logo-text {
    margin-left:5px;
    color: white;
    font-size:13px;
    font-weight:bold;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    height: 70vh;
    width: 100%;
    background-color: black;
    position: relative;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    z-index: 10;
    color: rgb(255, 250, 250);
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-text h1 {
    font-size: 3rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.5rem;
    margin: 0;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dot.active {
    background-color: white;
}

.who-am-i {
    margin-top: 50px;
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.content {
    width: 70%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
}

.content .left {
    width: 50%;
    padding: 10px;
    text-align: justify;
    font-size: 18px;
}

.content .left h1 {
    text-align: left;
}

.content .left hr {
    width: 50%;
    box-shadow: 5px 5px 18px rgba(0, 0, 0, 0.8);
}

.content .right {
    width: 40%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content .right img {
    width: 100%;
    height: 100%;
}

.content .left .icons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.content .left .icons i {
    font-size: 30px;
    margin-right: 15px;
    cursor: pointer;
    border-radius: 50%;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.content .left .icons i.icon-1 {
    color: rgb(255, 255, 255);
    background-color: #9e9e9e;
}

.content .left .icons i.icon-1:hover {
    background-color: #7e7e7e;
    transform: scale(1.1);
}

.content .left .icons i.icon-2 {
    color: rgb(255, 255, 255);
    background-color: #868282;
}

.content .left .icons i.icon-2:hover {
    background-color: #666262;
    transform: scale(1.1);
}

.content .left .icons i.icon-3 {
    color: rgb(255, 255, 255);
    background-color: #000000;
}

.content .left .icons i.icon-3:hover {
    background-color: #333333;
    transform: scale(1.1);
}

.services {
    margin-top: 50px;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d4d4d4;
    overflow: hidden;
}

.services .content {
    width: 70%;
    margin-top: 50px;
}

.services .content .left {
    width: 50%;
    padding: 10px;
    text-align: justify;
    font-size: 18px;
}

.services .content .left img {
    width: 100%;
    opacity: 0.8;
}

.services .content .right {
    display: flex;
    flex-direction: column;
    width: 40%;
    text-align: right;
}

.services .content .right hr {
    width: 50%;
    box-shadow: 5px 5px 18px rgba(0, 0, 0, 0.8);
}

.services .content .right h1 {
    text-align: right;
    margin-bottom: 20px;
}

.services .service-list {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 20px;
    width: 80%;
}

.services .service-list .service {
    width: 30%;
    justify-content: justify;
    padding: 10px;
    color: #494949;
}

.services .service-list .service h3 {
    color: #757575;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.services .service-list .service h3 i {
    font-size: 24px;
    background-color: #394ae3;
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.services .service-list .service h3 i:hover {
    background-color: #39d2e3;
    transform: scale(1.1);
}

.services .service-list .service li {
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Promoter Section */
.promoter {
    width: 100%;
    max-width: 100vw;
    padding: 80px 20px;
    background: #ffffff;
    overflow: hidden;
}

.promoter-content {
    max-width: 1000px;
    margin: 0 auto;
}

.promoter-content h2 {
    text-align: center;
    color: #394ae3;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.promoter-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.promoter-image {
    flex-shrink: 0;
}

.promoter-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #394ae3;
    box-shadow: 0 10px 30px rgba(57, 74, 227, 0.3);
}

.promoter-info {
    flex: 1;
}

.promoter-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.promoter-title {
    font-size: 1.1rem;
    color: #39d2e3;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promoter-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 25px 0;
    text-align: justify;
}

.promoter-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promoter-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #394ae3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.promoter-contact a:hover {
    color: #39d2e3;
    transform: translateX(5px);
}

.promoter-contact a i {
    font-size: 18px;
}

.why {
    width: 100%;
    max-width: 100vw;
    min-height: 400px;
    justify-content: center;
    align-items: center;
    display: flex;
    background: linear-gradient(to top, #141414, #434343);
    overflow: hidden;
}

.why .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 70%;
    color: white;
}

.why .content .trust-list {
    position: relative;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.why .content .trust-list hr {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: 0.5px;
    background-color: #a8a8a8;
    opacity: 0.7;
    z-index: 1;
}

.why .content .trust-list .item {
    width: 15%;
    font-size: 15px;
    color: #d4d4d4;
    text-align: center;
}

.why .content .trust-list .item i {
    color: rgb(64, 197, 64);
    font-size: 20px;
    display: none;
}

.why .content .trust-list .item p {
    font-size: 12px;
    color: #9e9e9e;
}

.why .content .trust-list .item:hover i {
    margin-left: 40%;
    display: block;
}

.why .content .trust-list:hover hr {
    opacity: 0.2;
}

/* Vision Section */
.vision {
    width: 100%;
    max-width: 100vw;
    padding: 80px 20px;
    background: linear-gradient(135deg, #394ae3 0%, #39d2e3 100%);
    color: white;
    overflow: hidden;
}

.vision-content {
    max-width: 1200px;
    margin: 0 auto;
}

.vision-content h2 {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0.9;
}

.vision-content h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vision-card i {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.vision-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Partnerships Section */
.partnerships {
    width: 100%;
    max-width: 100vw;
    padding: 80px 20px;
    background: #f8f9fa;
    overflow: hidden;
}

.partnerships-content {
    max-width: 1200px;
    margin: 0 auto;
}

.partnerships-content h2 {
    text-align: center;
    color: #394ae3;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.partnerships-content h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 60px;
    line-height: 1.2;
}

.partnership-section {
    margin-bottom: 60px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #394ae3;
}

.section-header i {
    font-size: 35px;
    color: #394ae3;
}

.section-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.partnership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.partnership-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border-left: 4px solid #39d2e3;
    transition: all 0.3s ease;
}

.partnership-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(57, 74, 227, 0.15);
}

.partnership-card i {
    font-size: 40px;
    color: #394ae3;
    margin-bottom: 15px;
}

.partnership-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.sport-partnerships {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.sport-category {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #394ae3;
}

.sport-category.football {
    border-top-color: #28a745;
}

.sport-category.basketball {
    border-top-color: #ff6b35;
}

.sport-category.handball {
    border-top-color: #007bff;
}

.sport-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.sport-header i {
    font-size: 30px;
}

.sport-category.football .sport-header i {
    color: #28a745;
}

.sport-category.basketball .sport-header i {
    color: #ff6b35;
}

.sport-category.handball .sport-header i {
    color: #007bff;
}

.sport-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.sport-category .intro {
    font-weight: 600;
    color: #555;
    margin-bottom: 15px;
}

.countries-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.country-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.country-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.country-item i {
    color: #394ae3;
    margin-top: 3px;
    font-size: 14px;
}

.country-item span {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

/* Network Section */
.network {
    width: 100%;
    max-width: 100vw;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    overflow: hidden;
}

.network-content {
    max-width: 1200px;
    margin: 0 auto;
}

.network-content h2 {
    text-align: center;
    color: #39d2e3;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.network-content h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.network-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.network-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(57, 210, 227, 0.2);
    border-color: #39d2e3;
}

.network-card i {
    font-size: 50px;
    color: #39d2e3;
    margin-bottom: 20px;
    display: block;
}

.network-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.network-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.network-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.network-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
}

.network-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #39d2e3;
    font-weight: bold;
}

/* Footer */
.footer {
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: white;
    padding: 60px 20px 20px;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #39d2e3;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-section.about p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(57, 210, 227, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #39d2e3;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #39d2e3;
    color: white;
    transform: translateY(-3px);
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section.links ul li {
    padding: 10px 0;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.footer-section.links ul li i {
    color: #39d2e3;
    font-size: 18px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    color: #39d2e3;
    font-size: 20px;
    margin-top: 3px;
}

.contact-item p {
    margin: 0;
    color: #b0b0b0;
    line-height: 1.8;
}

.contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #39d2e3;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: #808080;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        height: auto;
        min-height: 70px;
    }

    .container {
        width: 95%;
        padding: 10px;
    }

    .logo-container {
        flex: 1;
        height: auto;
        min-height: 40px;
    }

    .logo-container img {
        width: 25px;
        height: 25px;
    }

    .logo-container .logo-text {
        font-size: 10px;
        line-height: 1.2;
        max-width: 150px;
        word-wrap: break-word;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(to bottom, #394ae3, #39d2e3);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 30px;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 99;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 90%;
        text-align: center;
        padding: 18px 15px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0 auto;
    }

    .nav-link::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 101;
    }

    .hero {
        height: 50vh;
        min-height: 400px;
        width: 100%;
    }

    .hero-text {
        width: 90%;
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
        word-wrap: break-word;
    }

    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .logo-land {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 15px;
    }

    .carousel-nav {
        bottom: 10px;
    }

    .who-am-i .content {
        width: 95%;
        flex-direction: column;
        padding: 5px;
    }

    .content .left,
    .content .right {
        width: 100% !important;
        padding: 15px 10px;
    }

    .content .left h1 {
        font-size: 1.3rem;
        line-height: 1.4;
        text-align: center !important;
        word-wrap: break-word;
        margin-bottom: 15px;
    }

    .content .left p {
        font-size: 16px;
        line-height: 1.6;
        text-align: justify;
    }

    .content .left hr {
        margin: 15px auto;
        width: 60%;
    }

    .content .left .icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 25px;
    }

    .content .left .icons i {
        margin: 0;
        padding: 18px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .services .content {
        width: 95%;
        flex-direction: column-reverse;
        padding: 5px;
    }

    .services .content .left,
    .services .content .right {
        width: 100% !important;
        padding: 15px 10px;
    }

    .services .content .right h1 {
        font-size: 1.3rem;
        line-height: 1.4;
        text-align: center !important;
        word-wrap: break-word;
    }

    .services .content .right hr {
        margin: 15px auto;
        width: 60%;
    }

    .services .service-list {
        width: 95%;
        flex-direction: column;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .services .service-list .service {
        width: 100%;
        padding: 15px;
    }

    .services .service-list .service h3 {
        font-size: 1rem;
        flex-wrap: wrap;
        gap: 10px;
    }

    .services .service-list .service h3 i {
        width: 45px;
        height: 45px;
        font-size: 20px;
        padding: 12px;
    }

    .services .service-list .service li {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .services .service-list .service ul {
        padding-left: 20px;
    }

    .why {
        padding: 30px 0;
    }

    .why .content {
        width: 95%;
        padding: 15px 10px;
    }

    .why .content h1 {
        font-size: 1.3rem;
        line-height: 1.4;
        text-align: center;
        word-wrap: break-word;
        padding: 0 10px;
    }

    .why .content .trust-list {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .why .content .trust-list hr {
        display: none;
    }

    .why .content .trust-list .item {
        width: 100%;
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.5;
    }

    .why .content .trust-list .item i {
        display: block;
        margin: 10px auto 0;
    }

    .why .content .trust-list .item:hover i {
        margin-left: 0;
        margin: 10px auto 0;
    }

    .why .content .trust-list .item p {
        font-size: 13px;
        margin-top: 10px;
    }

    .promoter {
        padding: 40px 15px;
    }

    .promoter-content h2 {
        margin-bottom: 30px;
    }

    .promoter-card {
        flex-direction: column;
        padding: 25px 20px;
        gap: 25px;
    }

    .promoter-image img {
        width: 180px;
        height: 180px;
    }

    .promoter-info h3 {
        font-size: 1.4rem;
        text-align: center;
        word-wrap: break-word;
    }

    .promoter-title {
        text-align: center;
        font-size: 0.95rem;
    }

    .promoter-description {
        text-align: center;
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .promoter-contact {
        align-items: center;
    }

    .promoter-contact a {
        font-size: 0.85rem;
        text-align: center;
        word-wrap: break-word;
    }

    .vision,
    .partnerships,
    .network {
        padding: 40px 15px;
    }

    .vision-content h1,
    .partnerships-content h1,
    .network-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 10px;
        margin-bottom: 40px;
        word-wrap: break-word;
    }
    
    .vision-grid,
    .network-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .vision-card,
    .network-card {
        padding: 30px 20px;
    }

    .vision-card h3,
    .network-card h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
    }

    .vision-card p,
    .network-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .sport-partnerships {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partnership-section {
        padding: 20px 15px;
    }

    .partnership-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .partnership-card {
        padding: 20px 15px;
    }

    .partnership-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .section-header {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 12px;
    }

    .section-header i {
        font-size: 28px;
        flex-shrink: 0;
    }

    .section-header h3 {
        font-size: 1.1rem;
        word-wrap: break-word;
    }

    .sport-category {
        padding: 20px 15px;
    }

    .sport-header h4 {
        font-size: 1.2rem;
    }

    .country-item span {
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 40px 15px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section.about p,
    .contact-item p,
    .contact-item a {
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        padding: 0 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        width: 98%;
        padding: 8px 5px;
    }

    .logo-container {
        max-width: 55%;
    }

    .logo-container img {
        width: 22px;
        height: 22px;
    }

    .logo-container .logo-text {
        font-size: 8px;
        max-width: 120px;
    }

    .hero {
        height: 45vh;
        min-height: 350px;
    }

    .hero-text {
        width: 95%;
    }

    .hero-text h1 {
        font-size: 1.1rem;
        padding: 0 10px;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .logo-land {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 10px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .content .left h1,
    .services .content .right h1,
    .why .content h1 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .content .left p,
    .services .service-list .service li {
        font-size: 14px;
        line-height: 1.6;
    }

    .content .left .icons i {
        width: 42px;
        height: 42px;
        font-size: 18px;
        padding: 15px;
    }

    .nav-link {
        font-size: 15px;
        padding: 16px 12px;
    }

    .services .service-list .service h3 {
        font-size: 0.95rem;
    }

    .services .service-list .service h3 i {
        width: 40px;
        height: 40px;
        font-size: 18px;
        padding: 10px;
    }

    .why .content .trust-list .item {
        font-size: 13px;
        padding: 18px 12px;
    }

    .why .content .trust-list .item p {
        font-size: 12px;
    }

    .promoter-card {
        padding: 20px 15px;
    }

    .promoter-image img {
        width: 140px;
        height: 140px;
    }

    .promoter-info h3 {
        font-size: 1.2rem;
    }

    .promoter-title {
        font-size: 0.85rem;
    }

    .promoter-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .promoter-contact a {
        font-size: 0.8rem;
    }

    .vision-content h1,
    .partnerships-content h1,
    .network-content h1 {
        font-size: 1.2rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .vision-content h2,
    .partnerships-content h2,
    .network-content h2 {
        font-size: 0.85rem;
    }

    .vision-card,
    .network-card {
        padding: 25px 15px;
    }

    .vision-card h3,
    .network-card h3 {
        font-size: 1.1rem;
    }

    .vision-card p,
    .network-card p {
        font-size: 0.85rem;
    }

    .vision-card i,
    .network-card i {
        font-size: 40px;
    }

    .section-header i {
        font-size: 24px;
    }

    .section-header h3 {
        font-size: 1rem;
    }

    .sport-header h4 {
        font-size: 1.1rem;
    }

    .sport-category .intro {
        font-size: 0.85rem;
    }

    .country-item span {
        font-size: 0.8rem;
    }

    .partnership-card p {
        font-size: 0.85rem;
    }

    .partnership-section,
    .sport-category {
        padding: 18px 12px;
    }

    .footer-section h3 {
        font-size: 1rem;
    }

    .footer-section.about p,
    .contact-item p,
    .contact-item a,
    .footer-section.links ul li {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-logo {
        width: 60px;
        height: 60px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-link {
        font-size: 12px;
        padding: 6px 10px;
        white-space: nowrap;
    }

    .logo-container .logo-text {
        font-size: 11px;
    }

    .who-am-i .content,
    .services .content,
    .why .content {
        width: 90%;
    }

    .content .left {
        font-size: 16px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .services .service-list {
        width: 90%;
    }

    .services .service-list .service {
        width: 45%;
    }

    .promoter-card {
        gap: 30px;
        padding: 40px;
    }

    .promoter-image img {
        width: 220px;
        height: 220px;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        font-size: 1.8rem;
    }

    .vision-content h1,
    .partnerships-content h1,
    .network-content h1 {
        font-size: 3rem;
    }
}