/* General Styles – Variables & Theme */
:root {
    --accent: #0d9488;
    --accent-hover: #0f766e;
    --accent-light: rgba(13, 148, 136, 0.12);
    --section-offset: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll-triggered fade-in */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Navigation */
.w3-bar {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.w3-bar .w3-button:hover {
    color: var(--accent) !important;
}

/* Nav bar: one row on mobile – Home left, burger right */
.main-nav .nav-bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.main-nav .nav-bar .w3-wide {
    flex: 0 0 auto;
    margin-right: auto;
}

.main-nav .nav-bar .mobile-nav {
    flex: 0 0 auto;
}

.main-nav .nav-bar .mobile-menu-trigger {
    flex: 0 0 auto;
}

.main-nav .nav-bar > .w3-bar-item:first-child {
    flex: 0 0 auto;
}

/* Mobile Menu Trigger (Hamburger in nav bar) */
.mobile-menu-trigger {
    margin-left: auto !important;
    padding: 12px 16px !important;
    border: none;
    background: transparent !important;
    cursor: pointer;
    display: none;
}

.mobile-menu-trigger .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-nav.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.main-nav.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.main-nav.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
    .mobile-menu-trigger {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile Navigation Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    max-width: 100%;
    background: #fff;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-overlay.show .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-menu-close:hover {
    background: #e2e8f0;
    transform: scale(1.05);
}

.close-icon {
    position: relative;
    display: block;
}

.close-icon::before,
.close-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    margin-left: -9px;
    margin-top: -1px;
    background: #334155;
    border-radius: 1px;
}

.close-icon::before {
    transform: rotate(45deg);
}

.close-icon::after {
    transform: rotate(-45deg);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 72px 24px 32px;
    gap: 4px;
}

.mobile-menu-nav a {
    display: block;
    padding: 16px 20px;
    color: #1e293b;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 12px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    transform: translateX(24px);
    opacity: 0;
}

.mobile-menu-overlay.show .mobile-menu-nav a {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-overlay.show .mobile-menu-nav a:nth-child(1) { transition: transform 0.35s ease 0.05s, opacity 0.35s ease 0.05s, background 0.25s, color 0.25s; }
.mobile-menu-overlay.show .mobile-menu-nav a:nth-child(2) { transition: transform 0.35s ease 0.1s, opacity 0.35s ease 0.1s, background 0.25s, color 0.25s; }
.mobile-menu-overlay.show .mobile-menu-nav a:nth-child(3) { transition: transform 0.35s ease 0.15s, opacity 0.35s ease 0.15s, background 0.25s, color 0.25s; }
.mobile-menu-overlay.show .mobile-menu-nav a:nth-child(4) { transition: transform 0.35s ease 0.2s, opacity 0.35s ease 0.2s, background 0.25s, color 0.25s; }
.mobile-menu-overlay.show .mobile-menu-nav a:nth-child(5) { transition: transform 0.35s ease 0.25s, opacity 0.35s ease 0.25s, background 0.25s, color 0.25s; }

.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus-visible {
    background: var(--accent-light);
    color: var(--accent-hover);
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(100,100,100,0.5), rgba(100,100,100,0.5)), url('images/home.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(4px);
}

.hero-logo {
    max-width: 47vw;
    max-height: 26vh;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: heroLogoIn 1s ease-out forwards;
}

@keyframes heroLogoIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-section h1, .hero-section h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section h1 span, .hero-section h2 span {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    white-space: normal;
    max-width: 90vw;
}

/* Team Section */
.team-section {
    margin-top: 40px;
}

/* Company Facts */
.company-facts {
    margin-top: 40px;
}

.fact-box {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.fact-box:hover {
    transform: translateY(-10px);
}

.fact-box i {
    font-size: 3em;
    margin: 15px 0;
    color: #000;
}

.fact-box h3 {
    margin: 15px 0;
    font-weight: 600;
    font-size: 1.4em;
}

.fact-box p {
    color: #666;
    line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
    margin-top: 40px;
}

.expertise-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 25px 20px;
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    border-left: 4px solid #000;
}

.expertise-box:hover {
    transform: translateY(-5px);
}

.expertise-box i {
    font-size: 2.5em;
    margin: 15px 0;
    color: #000;
}

.expertise-box h4 {
    margin: 15px 0;
    font-weight: 600;
    font-size: 1.2em;
    color: #000;
}

.expertise-box p {
    color: #666;
    line-height: 1.6;
}

.team-member {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f8f9fa;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.team-member h3 {
    margin: 10px 0;
    font-weight: 600;
}

.team-member .position {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

/* Weapons Trade Spotlight */
.weapons-trade-spotlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin: 20px 10px;
    padding: 20px !important;
}

.weapons-feature {
    background: white;
    border-left: 4px solid #000;
    margin-bottom: 20px;
}

.weapons-feature i {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000;
}

.weapons-feature ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.weapons-feature ul li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.weapons-feature ul li:before {
    content: "\F26C";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #000;
}

.icon-medium {
    font-size: 2.5em;
    margin: 15px 0;
    color: var(--accent);
    transition: transform 0.3s ease;
}

#industries .w3-quarter:hover .icon-medium {
    transform: scale(1.1);
}

/* Unternehmen, die auf unsere Lösungen setzen */
.customers-section {
    background: linear-gradient(180deg, #fafafa 0%, #f1f5f9 100%);
    padding: 0;
}

.customers-section .w3-container {
    max-width: 100%;
}

.customer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 56px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.customer-logo-link,
.customer-logo-static {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.customer-logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.customer-logos img {
    max-height: 110px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: grayscale(20%);
}

.customer-logo-link:hover img {
    filter: grayscale(0%);
}

/* Feature Boxes */
.feature-box {
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.1);
}

.feature-box h3 {
    margin: 10px 0;
    font-weight: 600;
    font-size: 1.4em;
}

/* Contact Form */
.w3-input, .w3-button {
    border-radius: 4px;
    width: 100%;
    max-width: 100%;
}

textarea.w3-input {
    height: 120px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 992px) {
    .w3-third, .w3-quarter {
        width: 50%;
        margin-bottom: 30px;
    }
    
    .hero-section h1 span {
        font-size: 1.8em;
    }
    
    .hero-section h2 span {
        font-size: 1.2em;
    }
}

@media (max-width: 600px) {
    .hero-section {
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .hero-logo {
        max-width: 88vw;
        max-height: 50vh;
    }
    
    .hero-section h1 span {
        font-size: 1.5em;
        padding: 8px 15px;
    }
    
    .hero-section h2 span {
        font-size: 1em;
        padding: 6px 12px;
    }
    
    .w3-third, .w3-quarter {
        width: 100%;
    }
    
    .team-member {
        margin: 10px;
    }
    
    .team-img {
        width: 150px;
        height: 150px;
    }
    
    .weapons-trade-spotlight {
        margin: 10px 0;
        padding: 15px !important;
    }
    
    .w3-content {
        padding: 0 15px;
    }
    
    .feature-box {
        margin: 10px 0;
    }
    
    .w3-padding-64 {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }
}

/* Navigation Responsive */
@media (max-width: 600px) {
    .w3-bar {
        padding: 8px !important;
    }
    
    .w3-bar-item {
        padding: 8px 12px !important;
    }
    
    .w3-right {
        float: none !important;
        width: 100% !important;
    }
    
    .w3-bar .w3-button {
        white-space: normal;
        text-align: left;
        width: 100%;
        margin: 2px 0;
    }
    
    /* Nav bar: Home + Burger in einer Zeile, keine volle Breite */
    .main-nav .nav-bar .w3-button,
    .main-nav .nav-bar .mobile-menu-trigger {
        width: auto !important;
    }
    
    .main-nav .nav-bar .w3-wide {
        text-align: left;
    }
}

/* Container Spacing */
.w3-container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Hover Effects */
.w3-hover-opacity {
    cursor: pointer;
    margin: 0 10px;
}

/* Footer */
footer .w3-button {
    margin: 20px 0;
    border-radius: 25px;
    padding: 12px 24px;
}

footer .w3-xlarge i {
    margin: 0 8px;
}

/* Pricing Section – Flexible Lösungen (equal card heights) */
.pricing-boxes {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

.pricing-boxes .w3-third {
    flex: 1 1 280px;
    max-width: 360px;
    min-width: 0;
    display: flex;
}

.pricing-box {
    background: white;
    border-radius: 12px;
    padding: 28px 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.06);
}

.pricing-box.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 30px var(--accent-light);
}

.pricing-box.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--accent-light);
}

.pricing-box:not(.featured):hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.pricing-box i {
    font-size: 2.25em;
    margin: 12px 0 16px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.pricing-box:hover i {
    transform: scale(1.08);
}

.pricing-box h3 {
    margin: 0 0 16px;
    font-weight: 600;
    font-size: 1.25em;
    line-height: 1.3;
}

.pricing-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex: 1;
}

.pricing-box ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 0.95em;
    line-height: 1.5;
}

.pricing-box ul li:before {
    content: "\F26D";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.85em;
}

#contact {
    padding-top: 28px !important;
    padding-bottom: 64px !important;
}

.pricing-info {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 32px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-info .w3-large {
    font-weight: 600;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.pricing-info .w3-button {
    margin-top: 20px;
    padding: 12px 24px;
    font-weight: 500;
    background: var(--accent) !important;
    color: #fff !important;
    border: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.pricing-info .w3-button:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
}

.pricing-info .w3-button i {
    margin-right: 8px;
}

.contact-process {
    text-align: left;
    margin: 28px 0 0;
    padding: 20px 24px;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.contact-process .process-title {
    margin: 0 0 12px;
    font-weight: 600;
    font-size: 1.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

.contact-process .process-title i {
    color: var(--accent);
}

.contact-process ol {
    margin: 0;
    padding-left: 22px;
    line-height: 1.7;
    color: #334155;
}

.contact-process ol li {
    margin-bottom: 6px;
}

@media (max-width: 992px) {
    .pricing-boxes .w3-third {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .pricing-box.featured {
        transform: none;
    }
    
    .pricing-box.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 600px) {
    .pricing-box {
        margin: 10px 0;
        min-height: 280px;
    }
    
    .pricing-info {
        margin-top: 16px;
        padding: 24px 20px;
        max-width: 100%;
    }
    
    .pricing-info .w3-large {
        font-size: 1.5em;
    }
    
    .contact-process {
        margin-top: 20px;
        padding: 16px 18px;
    }
    
    .contact-process ol {
        font-size: 0.95em;
    }
    
    .customer-logos {
        gap: 40px;
        margin-top: 32px;
    }
    
    .customer-logos img {
        max-height: 80px;
        max-width: 200px;
    }
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 80px auto 0;
    padding: 20px;
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 40px;
    font-weight: 600;
    color: #333;
}

.legal-content h3 {
    margin-top: 25px;
    color: #444;
}

.legal-content h4 {
    margin-top: 20px;
    color: #555;
}

.legal-content p {
    margin: 15px 0;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-content ul li {
    margin: 10px 0;
}

.legal-content a {
    color: #000;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #333;
}

@media (max-width: 600px) {
    .legal-content {
        margin-top: 60px;
        padding: 15px;
    }
    
    .legal-content h2 {
        margin-top: 30px;
        font-size: 1.5em;
    }
    
    .legal-content h3 {
        font-size: 1.3em;
    }
}

/* Footer Section */
.footer-section {
    background: #1a1a1a;
    color: #fff;
    position: relative;
    padding: 60px 0 0;
}

.footer-content {
    padding-bottom: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-section p {
    color: #b3b3b3;
    margin: 10px 0;
    line-height: 1.6;
}

.footer-section i {
    margin-right: 10px;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #111;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-links {
    text-align: center;
    margin-bottom: 15px;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9em;
}

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

.separator {
    color: #666;
    margin: 0 15px;
}

.copyright {
    text-align: center;
    color: #666;
    margin: 0;
    font-size: 0.9em;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
    z-index: 1000;
}

.scroll-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.scroll-to-top i {
    font-size: 24px;
}

@media (max-width: 600px) {
    .footer-section {
        padding: 40px 0 0;
    }

    .footer-content .w3-third {
        margin-bottom: 30px;
    }

    .footer-section h3 {
        font-size: 1.2em;
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    .separator {
        margin: 0 10px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* About Section Styles */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    margin: 0 auto;
    float: none;
}

.about-intro p {
    max-width: 800px;
    margin: 20px auto;
}

.about-text-section {
    padding: 16px 18px;
    border-left: 4px solid var(--accent);
    margin: 16px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text-section:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.about-text-section h3 {
    font-size: 1.2em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-text-section h3 i {
    font-size: 1.1em;
}

.about-text-section p {
    line-height: 1.7;
    color: #444;
    font-size: 0.95em;
}

.about-waffenhandel {
    margin-top: 28px;
    padding: 22px 28px;
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.about-waffenhandel h3 {
    font-size: 1.35em;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-waffenhandel h3 i {
    color: var(--accent);
    font-size: 1.3em;
}

.about-waffenhandel p {
    font-size: 1.05em;
    line-height: 1.75;
    color: #334155;
    margin: 0;
}

.team-overview {
    margin-top: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
}

.team-description {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
}

.team-description p {
    margin: 25px 0;
    line-height: 1.8;
    text-align: left;
}

.team-description strong {
    color: #000;
    font-size: 1.1em;
}

@media (max-width: 600px) {
    .about-text-section {
        margin: 10px 0;
        padding: 14px;
    }
    
    .about-text-section h3 {
        font-size: 1.1em;
    }
    
    .about-text-section p {
        font-size: 0.9em;
    }
    
    .about-waffenhandel {
        padding: 18px 20px;
        max-width: 100%;
    }
    
    .about-waffenhandel h3 {
        font-size: 1.2em;
    }
    
    .about-waffenhandel p {
        font-size: 1em;
    }

    .team-overview {
        margin-top: 30px;
        padding: 20px 0;
    }

    .team-description {
        padding: 0 15px;
    }
} 