/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header and Navigation */
.header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(30, 58, 138, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.logo-image {
    width: 110px;
    height: auto;
    max-height: 110px;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo h2 {
    color: #1e3a8a;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


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

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

.nav-links a:hover {
    color: #2563eb;
}

.cta-button {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white !important;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    z-index: 1001;
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: #64748b;
}

.lang-btn.active {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
}

.lang-btn:hover:not(.active) {
    background: #f1f5f9;
    color: #1e3a8a;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1e3a8a;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #2563eb;
    transform: scale(1.1);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-image {
        width: 85px;
        max-height: 85px;
    }
    
    .logo h2 {
        font-size: 1.4rem;
    }
    
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
        display: none;
        z-index: 999;
        border-top: 2px solid #e2e8f0;
    }
    
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1.1rem;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .cta-button {
        margin-top: 1rem;
        text-align: center;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    padding: 260px 10% 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-top: 1rem;
}

/* SUBTITEL VERBESSERUNGEN */
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    margin-top: 0.75rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    
    /* Neue Verbesserungen */
    padding: 1.75rem 2.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    
    /* Text-Ausrichtung */
    text-align: left;
    position: relative;
}

/* Zitat-Symbol vor dem Text */
.hero-content p::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
    line-height: 1;
}

.hero-button {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    margin-top: 1rem;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
    background: #f0f9ff;
    border-color: #1e3a8a;
}

/* Add some decorative elements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Mobile Responsive for Hero */
@media (max-width: 768px) {
    .hero {
        padding: 100px 5% 60px;
        min-height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
        line-height: 1.7;
        padding: 1.2rem 1.5rem;
        text-align: center;
    }
    
    .hero-content p::before {
        font-size: 3rem;
        left: 50%;
        transform: translateX(-50%);
        top: -5px;
    }
    
    .hero-button {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .hero::before {
        animation: none;
    }
    
    .hero::after {
        width: 100px;
        height: 100px;
        top: 5%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.05rem;
        padding: 1rem 1.2rem;
        line-height: 1.6;
    }
    
    .hero-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===== SERVICE TOGGLE SYSTEM ===== */

/* Services Preview */
.services-preview {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-preview h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
    font-weight: 700;
}

/* Services Grid - 4 equal boxes */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Cards with equal height */
.service-card {
    background: white;
    padding: 2.5rem 1.8rem 2.4rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 340px;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e3a8a);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
}

.service-card h3 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
    min-height: 90px;
}

.service-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.12);
    color: #1e3a8a;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
    gap: 0.5rem;
}

.service-toggle-btn {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 0.9rem;
    margin-top: auto;
}

.service-toggle-btn:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px);
}

.service-toggle-btn .arrow {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.service-toggle-btn.active .arrow {
    transform: rotate(180deg);
}

/* Service Details Container */
.service-details-container {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail {
    background: white;
    margin-bottom: 2rem;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    border-left: 5px solid #2563eb;
    animation: serviceSlideDown 0.4s ease-out;
}

@keyframes serviceSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-detail h2 {
    color: #1e3a8a;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-detail p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail ul {
    color: #64748b;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-learn-more {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-learn-more:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px);
}

/* Dedicated Services page layout */
.detailed-services {
    background: #f8fafc;
    padding: 90px 5% 110px;
}

.detailed-services .services-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
}

@media (min-width: 1200px) {
    .detailed-services .services-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.detailed-services .service-detail {
    padding: 2.2rem 2rem;
    border-left: none;
    border-top: 4px solid #2563eb;
    margin-bottom: 0;
    min-height: 100%;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.detailed-services .service-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.12);
}

.detailed-services .service-detail h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.detailed-services .service-detail p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.detailed-services .service-detail ul {
    padding-left: 1.1rem;
    margin-bottom: 1.5rem;
}

.detailed-services .service-detail li {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.detailed-services .service-learn-more {
    width: fit-content;
    margin-top: auto;
}

.detailed-services .service-detail:last-child {
    margin-bottom: 0;
}

/* Active service card state */
.service-card.active {
    border-color: #2563eb;
    box-shadow: 0 10px 35px rgba(37, 99, 235, 0.2);
}

/* Footer */
.site-footer {
    background: #ffffff;
    color: #0f172a;
    padding: 70px 5% 45px;
    margin-top: 80px;
    border-top: 1px solid #e2e8f0;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto 35px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo h2 {
    color: #1e3a8a;
}


.footer-address {
    margin-top: 1rem;
    color: #475569;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-list {
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #0f172a;
    font-weight: 600;
}

.social-link:hover {
    color: #2563eb;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-icon path {
    fill: currentColor;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #feda77, #f58529, #dd2a7b, #8134af);
}

.social-icon.telegram {
    background: #2aabee;
}

.social-icon.youtube {
    background: #ff0000;
}

.footer-column a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #2563eb;
}

.footer-social {
    align-items: flex-end;
    text-align: right;
}

.social-list {
    align-items: flex-end;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-brand .logo {
    align-items: flex-start;
}

.footer-brand .logo-text {
    line-height: 1.2;
}

.footer-brand .logo-image {
    width: 110px;
    max-height: 110px;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-social {
        align-items: flex-start;
        text-align: left;
    }
    
    .social-list {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-column {
        flex: 1 1 auto;
    }
}

/* Mobile Responsive for 4-box layout */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .service-card {
        min-height: 250px;
        padding: 2rem 1.5rem;
    }
    
    .service-detail {
        padding: 2rem;
    }
    
    .service-detail h2 {
        font-size: 1.8rem;
    }
    
    .service-details-container {
        margin-top: 2rem;
    }
    
    .detailed-services {
        padding: 60px 1.5rem 80px;
    }
    
    .detailed-services .services-container {
        grid-template-columns: 1fr;
    }
    
    .detailed-services .service-detail {
        padding: 1.8rem;
    }
}

/* ABOUT PAGE STYLES */
.about-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    padding: 180px 5% 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.our-story {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.our-story h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.our-story p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-choose-us {
    background: #f8fafc;
    padding: 80px 5%;
}

.why-choose-us .why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-us h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
}

.feature-card h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

.team-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.team-section h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: white;
    padding: 3.2rem 2.4rem;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.12);
    text-align: center;
    transition: all 0.3s ease;
}

.team-photo {
    width: 210px;
    height: 210px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.18);
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(30, 58, 138, 0.18);
}

.team-member h3 {
    color: #1e3a8a;
    font-size: 1.6rem;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.team-member .position {
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.team-member p {
    color: #64748b;
    line-height: 1.6;
}

.mission-section {
    padding: 80px 5%;
    background: #f8fafc;
    text-align: center;
}

.mission-section .mission-container {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-section h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.mission-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* CONTACT PAGE STYLES */
.contact-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    padding: 180px 5% 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.contact-section {
    padding: 80px 5%;
    background: #f8fafc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info > p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #64748b;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.contact-form h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px);
}

.map-section {
    padding: 80px 5%;
    background: white;
}

.map-section .map-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.map-section h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.map-placeholder {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    padding: 4rem;
    border-radius: 15px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-content p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 80px 5%;
    background: #f8fafc;
}

.faq-section .faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.1);
    border-left: 4px solid #2563eb;
}

.faq-item h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1,
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p,
    .about-hero-content p,
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .services-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-preview h2,
    .our-story h2,
    .why-choose-us h2,
    .team-section h2,
    .mission-section h2,
    .map-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .hero,
    .about-hero,
    .contact-hero {
        padding: 140px 5% 80px;
        min-height: 60vh;
    }
    
    .language-switcher {
        top: 80px;
        right: 10px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .service-detail {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .service-detail h2 {
        font-size: 1.8rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .map-placeholder {
        padding: 2rem;
    }
    
    .mission-content p {
        text-align: center;
    }
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* About Page Containers */
.our-story .story-container,
.why-choose-us .why-choose-container,
.team-section .team-container,
.mission-section .mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links a.active {
    color: #2563eb;
}
