* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #2d5a4f;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    height: 70vh; /* Reduced from 100vh to 70vh */
    background: linear-gradient(135deg, #1a3a32 0%, #2d5a4f 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Use cover for better responsive behavior */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-position: center;
    opacity: 0.3; /* Reduced opacity to make it more subtle */
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00ff88;
}

.hero-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.hero-dot.active {
    background: white;
}

/* Section Styling */
.section {
    padding: 4rem 2rem;
}

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

.section-title {
    font-size: 2.5rem;
    color: #2d5a4f;
    margin-bottom: 2rem;
    text-align: center;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.partner-logo {
    height: 120px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed font styles, will use image */
}

.partner-logo img {
    max-height: 100%;
    max-width: 90%;
    object-fit: contain;
}

.partner-info {
    padding: 1.5rem;
    background: #2d5a4f;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.partner-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.partner-details {
    font-size: 0.9rem;
    opacity: 0.9;
}

.partner-arrow {
    align-self: flex-end;
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: #2d5a4f;
    color: white;
    padding: 1.5rem 2rem;
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-details {
    text-align: left;
}

.contact-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.contact-title {
    font-size: 0.9rem;
    margin: 0;
    color: #00ff88;
    opacity: 0.9;
}

.contact-email a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.4rem 1rem;
    border: 1px solid #00ff88;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.2s ease;
    background: transparent;
    margin-left: 1rem;
}

.contact-email a:hover {
    background: #00ff88;
    color: #2d5a4f;
}

/* Mission Section */
.mission-section {
    background: #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text ul {
    list-style: none;
    padding-left: 0;
}

.mission-text li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission-text li::before {
    content: "●";
    color: #2d5a4f;
    position: absolute;
    left: 0;
}

.mission-image {
    width: 100%;
    height: 300px;
    background: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.mission-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* World Map Section */
.world-map-section {
    text-align: center;
}

.world-map {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 2rem auto;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.world-map img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.antitrust-statement {
    width: 100%;
    max-width: 900px;
    height: 600px;
    margin: 2rem auto;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #ca1c1c;
    padding-top: 1rem;
}

.antitrust-statement img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.antitrust-content {
    position: relative;
}

.antitrust-image-container {
    float: right;
    width: 45%;
    height: 500px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1rem;
    margin: 0 0 2rem 2rem;
}

.antitrust-text {
    color: #333;
    line-height: 1.6;
}

.regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.region {
    padding: 1rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: #00ff88;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 60vh; /* Slightly shorter on mobile */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .contact-content {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-person {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-details {
        text-align: center;
    }

    .contact-email a {
        margin-left: 0;
        margin-top: 0.5rem;
        font-size: 0.85rem;
        padding: 0.35rem 0.8rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .mission-image {
        height: auto;
        min-height: 200px;
    }

    .world-map {
        height: auto;
        min-height: 250px;
        padding: 1rem;
    }

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

    .partner-logo {
        height: 120px;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        /* Removed font styles, will use image */
    }

    .partner-logo img {
        max-height: 100%;
        max-width: 90%;
        object-fit: contain;
    }

    .section-title {
        font-size: 2rem;
    }

    .antitrust-content {
        position: static !important;
        overflow: hidden !important;
        display: block !important;
    }

    .antitrust-content::after {
        content: "" !important;
        display: table !important;
        clear: both !important;
    }

    .antitrust-image-container {
        float: none !important;
        width: 100% !important;
        height: 300px !important;
        margin: 0 0 1.5rem 0 !important;
        background: #f8f9fa !important;
        box-sizing: border-box !important;
    }

    .antitrust-text {
        text-align: left !important;
        width: 100% !important;
        clear: both !important;
        box-sizing: border-box !important;
        float: none !important;
    }

    .antitrust-text h3 {
        font-size: 1.5rem !important;
    }

    .antitrust-text ol {
        padding-left: 1rem !important;
    }

    .antitrust-text li {
        font-size: 0.9rem !important;
        margin-bottom: 0.8rem !important;
    }

    .section {
        padding: 2rem 1rem;
    }
}
