/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Header Styles */
.header {
    background-color: #080710;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}



.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2D95FF;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 6px;
    gap: 4px;
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: none;
    border: none;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
}

.lang-btn.active {
    background-color: #2D95FF;
    color: #ffffff;
}

.lang-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: transparent;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.1) 0%, rgba(22, 33, 62, 0.1) 50%, rgba(15, 52, 96, 0.1) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}



.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px;
    width: 100%;
}

/* Smart Solutions Badge */
.smart-solutions-badge {
    display: inline-block;
    margin-bottom: 30px;
}

.badge-img {
    height: 40px;
    width: auto;
}

/* Hero Title */
.hero-title {
    font-size: 76px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: center;
}

.title-word {
    display: inline-block;
    color: #ffffff;
}

.title-word.credit {
    color: #2D95FF;
}

.title-word.business {
    color: #A86CFF;
}

/* Hero Description */
.hero-description {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #027DFF;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0266CC;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

/* Fallback background if image doesn't load */
.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
}

.statistics-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/statistics-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

.statistics-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.1) 0%, rgba(22, 33, 62, 0.1) 50%, rgba(15, 52, 96, 0.1) 100%);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    margin-bottom: 20px;
}

.trophy-img {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(100%) saturate(2000%) hue-rotate(200deg) brightness(1.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-description {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 400;
}

/* About Us Section */
.about {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 0;
}

/* Fallback background if image doesn't load */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/about-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

.about-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.1) 0%, rgba(22, 33, 62, 0.1) 50%, rgba(15, 52, 96, 0.1) 100%);
}

.about-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 500px;
    margin: 0;
}

.about-icon {
    margin-bottom: 30px;
}

.about-icon-img {
    width: 133px;
    height: 32px;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-description {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-cta {
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon-img {
    width: 80px;
    height: 80px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.5;
}

.about-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cube-img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #000000;
}

.services-content {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.services-icon {
    margin-bottom: 30px;
}

.services-icon-img {
    width: 133px;
    height: 32px;
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.services-subtitle {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 60px;
    line-height: 1.5;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon-img {
    width: 50px;
    height: 50px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-description {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.5;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background-color: #000000;
}

.reviews-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.reviews-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reviews-icon {
    margin-bottom: 20px;
}

.reviews-icon-img {
    width: 221px;
    height: 32px;
}

.reviews-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.reviews-navigation {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn.active {
    background-color: #2D95FF;
    color: #ffffff;
}

.nav-btn.inactive {
    background-color: #333333;
    color: #ffffff;
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn:hover:not(.inactive) {
    background-color: #1a7acc;
}

.testimonials-carousel {
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 360px;
    height: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.client-title {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    margin: 0;
}

.testimonial-text {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

/* Fallback background if image doesn't load */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
    z-index: 0;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/contact-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

.contact-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(26, 26, 46, 0.1) 50%, rgba(22, 33, 62, 0.1) 100%);
}

.contact-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-info {
    flex: 1;
    max-width: 500px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-description {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-img {
    width: 60px;
    height: 60px;
}

.contact-text {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

.contact-form-container {
    flex: 1;
    max-width: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-input,
.form-textarea {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 16px;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2D95FF;
    background-color: rgba(255, 255, 255, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

/* Footer */
.footer {
    padding: 60px 0 40px 0;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/footer-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

.footer-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.1) 0%, rgba(22, 33, 62, 0.1) 50%, rgba(15, 52, 96, 0.1) 100%);
}

.footer-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 116px;
    height: 22px;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.footer-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #2D95FF;
}

.footer-copyright {
    margin-top: 20px;
}

.copyright-text {
    color: #ffffff;
    opacity: 0.7;
    font-size: 14px;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-list {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .statistics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-description {
        font-size: 14px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .about .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-content {
        text-align: center;
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 15px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    

    
    .section-title {
        font-size: 28px;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-description {
        font-size: 13px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    .about-icon-img {
        width: 133px;
        height: 32px;
    }
    
    .feature-icon-img {
        width: 60px;
        height: 60px;
    }
    
    .about .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .services-subtitle {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-description {
        font-size: 12px;
    }
    
    .service-icon-img {
        width: 40px;
        height: 40px;
    }
    
    .reviews-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .reviews-header {
        align-items: center;
        text-align: center;
    }
    
    .reviews-title {
        font-size: 36px;
        margin-left: 0;
        text-align: center;
    }
    
    .reviews-navigation {
        align-self: center;
    }
    
    .testimonial-card {
        width: 280px;
        height: 160px;
        padding: 15px;
    }
    
    .client-photo {
        width: 45px;
        height: 45px;
    }
    
    .client-name {
        font-size: 14px;
    }
    
    .client-title {
        font-size: 12px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-description {
        font-size: 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-submit {
        justify-content: center;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-description {
        font-size: 14px;
    }
    
    .contact-method {
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon-img {
        width: 50px;
        height: 50px;
    }
    
    .contact-text {
        font-size: 14px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .footer-nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-nav-link {
        font-size: 14px;
    }
    
    .copyright-text {
        font-size: 12px;
    }
}

/* Privacy and Terms Pages */
.privacy-page,
.terms-page {
    padding: 120px 0 80px 0;
    background-color: #000000;
    min-height: 100vh;
}

.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
    line-height: 1.6;
}

.privacy-title,
.terms-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.last-updated {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.7;
    text-align: center;
    margin-bottom: 50px;
}

.privacy-section,
.terms-section {
    margin-bottom: 40px;
}

.section-number {
    font-size: 24px;
    font-weight: 600;
    color: #2D95FF;
    margin-bottom: 15px;
}

.privacy-section p,
.terms-section p {
    margin-bottom: 15px;
    font-size: 16px;
}

.privacy-section ul,
.terms-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-info p {
    margin: 5px 0;
    font-size: 16px;
}

.partners-table {
    margin: 20px 0;
    overflow-x: auto;
}

.partners-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.partners-table th,
.partners-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-table th {
    background-color: rgba(45, 149, 255, 0.1);
    font-weight: 600;
    color: #2D95FF;
}

.partners-table td {
    color: #ffffff;
}

.partners-table a {
    color: #2D95FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.partners-table a:hover {
    color: #1a7acc;
}

/* Mobile Responsive for Privacy/Terms */
@media (max-width: 768px) {
    .privacy-title,
    .terms-title {
        font-size: 36px;
    }
    
    .section-number {
        font-size: 20px;
    }
    
    .privacy-section p,
    .terms-section p,
    .privacy-section li,
    .terms-section li {
        font-size: 14px;
    }
    
    .partners-table {
        font-size: 12px;
    }
    
    .partners-table th,
    .partners-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .privacy-title,
    .terms-title {
        font-size: 28px;
    }
    
    .section-number {
        font-size: 18px;
    }
    
    .privacy-section p,
    .terms-section p,
    .privacy-section li,
    .terms-section li {
        font-size: 13px;
    }
    
    .partners-table th,
    .partners-table td {
        padding: 6px 8px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide elements initially for language switching */
[data-lang] {
    transition: opacity 0.3s ease;
}
