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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px;
}

.language-switcher button {
    background: transparent;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    color: #666;
}

.language-switcher button.active {
    background: #0066cc;
    color: white;
}

.language-switcher button:hover:not(.active) {
    background: #f0f0f0;
}

/* Header */
header {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

header .tagline {
    font-size: 1.3em;
    opacity: 0.95;
    font-weight: 300;
}

/* Main Content */
main {
    padding: 40px 0;
}

section {
    background: white;
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

section h2 {
    color: #0066cc;
    font-size: 2em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #0066cc;
}

/* About Section */
.about-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

/* Divisions Section */
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.division-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e0e0e0;
}

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

.division-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.division-card h3 {
    color: #0066cc;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.division-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.division-card ul {
    list-style: none;
    padding: 0;
}

.division-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.division-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.contact-info {
    margin-top: 30px;
    display: inline-block;
    text-align: left;
}

.contact-info p {
    font-size: 1em;
    margin: 10px 0;
}

.contact-info strong {
    color: #0066cc;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }

    header .tagline {
        font-size: 1em;
    }

    section {
        padding: 25px;
    }

    section h2 {
        font-size: 1.5em;
    }

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

    .language-switcher {
        top: 10px;
        right: 10px;
    }

    .language-switcher button {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    .division-card {
        padding: 20px;
    }
}