
/* Global Styles */
:root {
    --primary-color: #1a4b8c;
    --primary-dark: #0f3366;
    --secondary-color: #0f172a;
    --accent-color: #f97316;
    --dark-color: #1e293b;
    --gray-color: #64748b;
    --light-color: #f5f0e6;
    --border-color: #cbd5e1;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn-primary {
    background-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}
.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
}
.alt-bg {
    background-color: var(--light-color);
}
/* Header Styles */
header {
    background-color: #f5f0e6;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}
.logo span {
    color: var(--primary-color);
}
.nav-links {
    display: flex;
}
.nav-links li {
    margin-left: 30px;
    position: relative;
}
.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}
/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    margin: 0;
    padding: 0;
}
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-color);
    font-weight: 400;
    transition: all 0.3s ease;
}
.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}
.dropdown-menu a::after {
    display: none;
}
.dropdown > a .fa-chevron-down {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
/* Hero Section */
.hero {
    background: rgb(248, 248, 246) !important;
    color: rgb(4, 4, 4) !important;
    padding: 120px 0;
    text-align: center;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(4, 4, 4);
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
/* Services Overview Section */
.services-overview {
    padding: 100px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}
.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
}
.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary-color);
}
.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}
.read-more:hover i {
    transform: translateX(5px);
}
/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--light-color);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.feature:hover {
    transform: translateY(-5px);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}
.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}
.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}
.feature p {
    color: var(--gray-color);
}
/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgb(248, 248, 246),rgb(248, 248, 246));
    color: rgb(4, 4, 4);
    text-align: center;
}
.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.cta-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(4, 4, 4);
}
.cta-section .btn-primary {
    background-color: var(--primary-color);
    color: white;
}
.cta-section .btn-primary:hover {
    background-color: var(--primary-dark);
}
/* Founders CTA (global alignment) */
.founders-cta .cta-content {
    text-align: center;
}
.founders-cta .centered-btn,
.founders-cta .btn.btn-primary {
    display: inline-block;
    margin: 20px auto 0;
}
.founders-cta {
    padding-bottom: 40px; /* sorgt für Abstand nach unten */
}
.founders-cta .centered-btn,
.founders-cta .btn.btn-primary {
    margin-top: 10px; /* zieht den Button etwas nach oben */
}
/* Footer Styles */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 70px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}
.footer-logo p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}
.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}
.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}
.footer-links a:hover,
.footer-services a:hover {
    color: white;
    padding-left: 5px;
}
.footer-contact p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}
.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: var(--transition);
}
.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
/* Page Header */
.page-header {
    background: rgb(248, 248, 246) !important;
    color: rgb(4, 4, 4) !important;
    padding: 80px 0 !important;
    text-align: center !important;
}
.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: rgb(4, 4, 4);
}
.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgb(5, 5, 5);
}
/* Service Detail Styles */
.service-detail {
    padding: 100px 0;
}
.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.service-content.reverse {
    direction: rtl;
}
.service-content.reverse .service-text {
    direction: ltr;
}
.service-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}
.service-text > p {
    margin-bottom: 30px;
    color: var(--gray-color);
}
.service-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}
.service-list li {
    display: flex;
    margin-bottom: 25px;
}
.service-list li i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}
.service-list li div h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}
.service-list li div p {
    color: var(--gray-color);
}
.service-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
/* About Page Styles */
.about-story {
    padding: 100px 0;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}
.about-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
}
.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
.our-mission {
    padding: 100px 0;
}
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.mission-text h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}
.mission-box {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}
.mission-box h3 {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}
.mission-box h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}
.mission-box p {
    color: var(--gray-color);
}
.values-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.value-item {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.value-item:hover {
    transform: translateY(-5px);
}
.value-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.value-icon i {
    font-size: 20px;
    color: var(--primary-color);
}
.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}
.value-item p {
    color: var(--gray-color);
    font-size: 0.95rem;
}
.team-section {
    padding: 100px 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    padding: 25px;
    text-align: center;
}
.team-member:hover {
    transform: translateY(-10px);
}
.team-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: var(--transition);
}
.team-member:hover .team-img {
    transform: scale(1.05);
}
.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}
.role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}
.bio {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: var(--transition);
}
.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}
.testimonials {
    padding: 100px 0;
}
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 20px;
}
.testimonial-content {
    position: relative;
    padding: 20px 0;
}
.testimonial-content::before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(37, 99, 235, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
}
.testimonial-content p {
    font-style: italic;
    color: var(--gray-color);
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}
.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}
.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
}
.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.testimonial-controls button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: var(--transition);
}
.testimonial-controls button:hover {
    background-color: var(--primary-color);
    color: white;
}
/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}
.contact-info > p {
    margin-bottom: 40px;
    color: var(--gray-color);
}
.info-item {
    display: flex;
    margin-bottom: 30px;
}
.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
.info-icon i {
    font-size: 20px;
    color: var(--primary-color);
}
.info-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}
.info-details p {
    color: var(--gray-color);
    margin-bottom: 5px;
}
.social-connect h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}
.contact-form-container {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}
.contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group.full-width {
    grid-column: span 2;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
}
.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}
.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--gray-color);
}
.checkbox-group label a {
    color: var(--primary-color);
    text-decoration: underline;
}
.full-width {
    width: 100%;
}
.faq-section {
    padding: 100px 0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}
.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-question h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
}
.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition);
}
.faq-answer {
    padding: 0 30px 20px;
    display: none;
}
.faq-answer p {
    color: var(--gray-color);
}
.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}
.faq-item.active .faq-answer {
    display: block;
}
/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2,
    .cta-content h2,
    .service-text h2,
    .about-text h2,
    .mission-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .service-content,
    .about-content,
    .mission-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
    
    .service-image,
    .about-image {
        order: -1;
    }
}
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    /* Founders CTA styles */
    .founders-cta .cta-content {
        text-align: center;
    }
    .founders-cta .btn.btn-primary {
        display: inline-block;
        margin: 20px auto 0 auto;
    }
    
    .footer-links h3::after,
    .footer-services h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}
@media screen and (max-width: 480px) {
    .section-header h2,
    .cta-content h2,
    .service-text h2,
    .about-text h2,
    .mission-text h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-card,
    .feature,
    .contact-form-container {
        padding: 20px;
    }
}
/* Contact Section */
.contact-section {
    padding: 60px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info h2,
.contact-form h2 {
    margin-bottom: 10px;
    font-weight: 600;
}
.contact-subtext {
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
}
.info-block p {
    margin: 10px 0;
    font-size: 15px;
}
.social-icons {
    margin-top: 25px;
}
.social-icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #1a1a1a;
    transition: 0.2s;
}
.social-icons a:hover {
    color: #0a4a8a;
}
/* Form improvements */
.contact-form form .form-group {
    margin-bottom: 20px;
}
.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}
/* Team photos */
.team-image {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}
.team-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(20,35,57,0.08);
    border: 6px solid #f3efe6; /* passt zu eurer hellen Karte */
    background-color: #fff;
}
@media (min-width: 1024px) {
    .team-photo { width: 160px; height: 160px; }
}
/* Why Companies Choose Us - grid cards */
.why-us {
    padding: 60px 0;
}
.why-us .section-header h2 {
    text-align: center;
    margin-bottom: 15px;
}
.why-us .section-header p {
    text-align: center;
    color: #7a7a7a;
    margin-bottom: 28px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}
/* Card style */
.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(20,35,57,0.06);
    border: 1px solid rgba(20,35,57,0.03);
}
.why-item .fa-fw, .why-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(10,74,138,0.07); /* dezenter blauer Hintergrund */
    color: #0a4a8a;
    font-size: 20px;
    padding: 8px;
    box-shadow: none;
}
.why-item h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #0f1724;
}
.why-item p {
    margin: 6px 0 0;
    color: #556;
    font-size: 14px;
    line-height: 1.45;
}
/* larger screens: 2 columns / 4 columns */
@media (min-width: 760px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .why-item { flex-direction: column; align-items: flex-start; min-height: 170px; }
    .why-item .fa-fw, .why-item i { min-width: 56px; height: 56px; border-radius: 12px; }
}
/* Precise fix: align underline in Why Companies Choose Us */
.why-us .section-header h2::after {
    bottom: -10px !important;   /* gleichen Wert wie der Standard-underline */
    transform: translateX(-50%) !important; /* sichert zentrierte Position */
}
/* -------------------------
   Footer: small visual fixes
   Paste at end of css/styles.css
   -------------------------*/
/* 1) Mehr Gewicht links, weniger White-Space */
.footer-logo {
    padding-right: 18px;       /* zieht das Logo näher zu den anderen Spalten */
    max-width: 320px;         /* verhindert zu viel Breite */
}
/* optional: etwas textlicher Zusatz, falls du ihn einfügst */
.footer-logo p {
    margin-top: 10px;
    color: rgba(255,255,255,0.85); /* sorgt für bessere Lesbarkeit */
    line-height: 1.5;
}
/* 2) Reduziere vertikalen Abstand der Social Icons (näher an Kontaktdaten) */
.footer-contact .social-icons {
    margin-top: 10px; /* vorher zu groß, 10px ist kompakt und sauber */
}
/* 3) Einheitliche Icon-Kreise & Hover */
.footer .social-icons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.04); /* dezenter Kreis */
    color: rgba(255,255,255,0.85);
    margin-right: 12px;
    transition: transform .18s ease, background .18s ease, color .18s ease;
    box-shadow: none;
}
.footer .social-icons a:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
    color: #fff;
}
/* 4) Icons (Farbschema) - zentrale Farbe definieren (ändert Icon- und Linkhover-Farbe) */
:root {
    --footer-accent: #0a67b3; /* passe hier die blaue Akzentfarbe an */
}
.footer a,
.footer p {
    color: rgba(255,255,255,0.85);
}
.footer a:hover {
    color: var(--footer-accent);
}
/* 5) Feinere Trennung für footer-bottom (subtile Linie statt harter Kante) */
.footer-bottom {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 18px 0;
    margin-top: 22px;
    color: rgba(255,255,255,0.75);
}
/* 6) Balance: verteile die drei Spalten gleichmäßiger (Desktop) */
.footer .container .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* gleichmäßige Verteilung */
    gap: 36px;
    align-items: start;
}
/* 7) Mobile: stacken, Abstand kleiner */
@media (max-width: 768px) {
    .footer .container .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .footer-logo { max-width: none; padding-right: 0; }
    .footer .social-icons a { margin-right: 10px; width: 40px; height: 40px; }
}
/* Footer fine-tuning - paste at end of styles.css */
/* a) Slightly tighter left column so it doesn't feel empty */
.footer-logo {
  max-width: 360px;   /* mehr Präsenz, weniger "leer" */
  padding-right: 12px;
}
/* b) Make mail / phone links inherit footer style but be obviously clickable */
.footer-contact p a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.04);
}
.footer-contact p a:hover {
  color: var(--footer-accent);
  border-bottom-color: rgba(255,255,255,0.18);
}
/* c) Social icon size + spacing adjustments */
.footer .social-icons a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.95);
  transition: transform .18s, background .18s, color .18s;
}
.footer .social-icons a i { font-size: 18px; }
.footer .social-icons a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.12);
  color: #fff;
}
/* d) subtle background for the footer-bottom and center the copyright text */
.footer-bottom {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 18px 0;
  margin-top: 28px;
  text-align: center;
  color: rgba(255,255,255,0.75);
}
/* e) grid tweak: give left col a touch more weight */
.footer .container .footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
/* responsive: stack cleanly on mobile */
@media (max-width: 768px) {
  .footer .container .footer-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer .social-icons a { width: 42px; height: 42px; margin-right: 10px; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-links.active {
        display: block;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: var(--box-shadow);
    }
    .nav-links li {
        margin: 15px 0;
    }
    .mobile-menu {
        display: block;
    }
}
