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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: rgba(37, 99, 235, 0.1);
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --background-light: #f8fafc;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
    border-radius: 24px;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2.5rem;
}

.logo h2 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: -0.5px;
}

.logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.08rem;
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: var(--primary-light);
}

.nav-menu a.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
}

.nav-menu a.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('11a9f2d6-bbe6-4272-baba-306b06f78750.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

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

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn i {
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--background-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Section */
.services-section {
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-list {
    list-style: none;
}

.service-list li {
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Table Styles */
.table-wrapper {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    margin-bottom: 3rem;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
}

.modern-table th,
.modern-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-table th {
    background: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.modern-table th i {
    margin-right: 0.5rem;
}

.modern-table td {
    color: var(--text-dark);
}

.modern-table tr:last-child td {
    border-bottom: none;
}

.modern-table tr:hover td {
    background: var(--background-light);
}

/* Highlight Box */
.highlight-box {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 2rem;
}

.highlight-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.highlight-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
    z-index: 999;
}

#scrollToTopBtn.show {
    display: flex;
}

#scrollToTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Scroll Animations */
.scroll-animate[data-animation="fade-in"] {
    opacity: 0;
    transform: translateY(0);
}

.scroll-animate[data-animation="fade-in"].visible {
    opacity: 1;
}

.scroll-animate[data-animation="slide-up"] {
    opacity: 0;
    transform: translateY(50px);
}

.scroll-animate[data-animation="slide-up"].visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate[data-animation="slide-right"] {
    opacity: 0;
    transform: translateX(-50px);
}

.scroll-animate[data-animation="slide-right"].visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate[data-animation="slide-left"] {
    opacity: 0;
    transform: translateX(50px);
}

.scroll-animate[data-animation="slide-left"].visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate[data-animation="zoom-in"] {
    opacity: 0;
    transform: scale(0.95);
}

.scroll-animate[data-animation="zoom-in"].visible {
    opacity: 1;
    transform: scale(1);
}

/* Animation Delays */
.scroll-animate[data-delay="100"] { transition-delay: 100ms; }
.scroll-animate[data-delay="200"] { transition-delay: 200ms; }
.scroll-animate[data-delay="300"] { transition-delay: 300ms; }
.scroll-animate[data-delay="400"] { transition-delay: 400ms; }
.scroll-animate[data-delay="500"] { transition-delay: 500ms; }

/* Animation Durations */
.scroll-animate[data-duration="slow"] { transition-duration: 1.2s; }
.scroll-animate[data-duration="normal"] { transition-duration: 0.8s; }
.scroll-animate[data-duration="fast"] { transition-duration: 0.5s; }

/* Special Section Styles for Azubi & Arbeitgeber */
.special-section {
    background: linear-gradient(120deg, var(--primary-light) 0%, #e0e7ff 100%);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.10);
    padding: 3rem 0 3rem 0;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.special-section:hover {
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.18);
}
.special-section .container {
    padding-top: 0;
    padding-bottom: 0;
}
.special-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}
.special-section p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
}
.special-section .azubi-box, .special-section .arbeitgeber-box {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 900px;
}
.special-section .azubi-icon, .special-section .arbeitgeber-icon {
    min-width: 70px;
    min-height: 70px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
}
.special-section .azubi-content, .special-section .arbeitgeber-content {
    flex: 1;
}

/* Smaller paragraph text for the employer intro on larger screens */
/* removed custom smaller text for #warum-arbeitgeber on large screens */

/* Lighter highlight box inside special sections for better readability */
.special-section .highlight-box {
    background: #eaf1ff;
    color: var(--text-dark);
}
.special-section .highlight-content h3,
.special-section .highlight-content p {
    color: var(--text-dark);
    opacity: 1;
}
.special-section .highlight-icon {
    background: var(--primary-light);
}
.special-section .highlight-icon i {
    color: var(--primary-color);
}

/* Arbeitgeber page: fine-tuned responsive styles */
#warum-arbeitgeber .arbeitgeber-content p {
    margin-bottom: 0.9rem;
}

/* Vorteile-Grid spacing defaults */
#arbeitgeber-vorteile .benefits-grid {
    gap: 2rem;
}
#arbeitgeber-vorteile .benefit-card h3 {
    line-height: 1.3;
}

@media (min-width: 1280px) {
    #arbeitgeber-vorteile .benefits-grid { gap: 2.5rem; }
    #arbeitgeber-vorteile .benefit-card { padding: 2.75rem; }
}

@media (max-width: 1024px) {
    #warum-arbeitgeber .arbeitgeber-box { padding: 2rem; }
}

@media (max-width: 768px) {
    #arbeitgeber-vorteile .benefits-grid { gap: 1.25rem; }
    #arbeitgeber-vorteile .benefit-card { padding: 1.5rem; border-radius: 18px; }
    #arbeitgeber-vorteile .benefit-card h3 { font-size: 1.1rem; }
    #arbeitgeber-vorteile .benefit-card p { font-size: 0.98rem; }
    #arbeitgeber-beratung .highlight-box { gap: 1rem; padding: 1.5rem; }
}

@media (max-width: 640px) {
    #warum-arbeitgeber .arbeitgeber-content p { margin-bottom: 0.7rem; }
    #arbeitgeber-vorteile .benefit-card { padding: 1.25rem; border-radius: 16px; }
    #arbeitgeber-beratung .highlight-content h3 { font-size: 1.05rem; }
}
@media (max-width: 768px) {
    .special-section .azubi-box, .special-section .arbeitgeber-box {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
    }
    .special-section {
        padding: 1.5rem 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .benefits-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .arbeitgeber-hero {
        height: 40vh !important;
        padding-top: 120px !important;
    }
    .arbeitgeber-hero .hero-title {
        font-size: 2rem !important;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .nav-menu.active {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100vw !important;
        background: #fff !important;
        z-index: 2000 !important;
        box-shadow: 0 8px 32px rgba(37,99,235,0.10);
        padding: 1.2rem 0.5rem 1.2rem 0.5rem !important;
        border-radius: 0 0 18px 18px !important;
        align-items: flex-start !important;
        gap: 1.2rem !important;
    }
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .arbeitgeber-hero {
        height: 28vh !important;
        padding-top: 90px !important;
    }
    .arbeitgeber-hero .hero-title {
        font-size: 1.3rem !important;
    }
    .arbeitgeber-hero .hero-subtitle {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    html, body, .container, .header, .main-content, .footer, .highlight-box, .special-section, .contact-form, .footer-content, .section-header, .hero-content, .benefit-card, .service-card, .azubi-box, .arbeitgeber-box {
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    .container {
        width: 94vw !important;
        max-width: 94vw !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        box-sizing: border-box !important;
    }
    .container, .main-content, .footer-content, .highlight-box, .special-section, .contact-form, .section-header, .hero-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    body {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .header {
        top: 1px;
        width: 100vw;
        max-width: 100vw;
        left: 0;
        transform: none;
        border-radius: 7px;
        padding: 0.1rem 0;
        overflow-x: hidden;
    }
    .logo h2 {
        font-size: 0.85rem;
        padding: 0.1rem 0.2rem;
    }
    .hero {
        padding: 0.7rem 0 0.4rem 0;
        min-height: 28vh;
        height: auto;
    }
    .hero-content {
        padding: 0 1vw;
        padding-top: 3.2rem !important;
    }
    .hero-title {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.7rem;
    }
    .hero-tag {
        font-size: 1.2rem !important;
        padding: 0.6rem 1.6rem !important;
    }
    .btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        min-width: 90px;
        min-height: 36px;
        justify-content: center;
    }
    .highlight-box {
        padding: 0.3rem;
        gap: 0.3rem;
        border-radius: 7px;
    }
    .highlight-content h3 {
        font-size: 0.95rem;
    }
    .section-header {
        margin-bottom: 1.2rem;
    }
    .section-header h2 {
        font-size: 0.95rem;
    }
    .section-header p {
        font-size: 0.85rem;
    }
    .special-section {
        padding: 0.15rem 0;
        margin: 0.4rem 0;
        border-radius: 4px;
    }
    .special-section .azubi-box, .special-section .arbeitgeber-box {
        padding: 0.15rem;
        border-radius: 3px;
        gap: 0.15rem;
    }
    .special-section .azubi-icon, .special-section .arbeitgeber-icon {
        min-width: 18px;
        min-height: 18px;
        font-size: 0.7rem;
        border-radius: 2px;
    }
    .special-section h2 {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }
    .special-section p {
        font-size: 0.75rem;
    }
    .contact-form {
        padding: 0.5rem;
        border-radius: 7px;
    }
    .form-group label {
        font-size: 0.8rem;
    }
    .form-group input,
    .form-group textarea {
        font-size: 0.8rem;
        padding: 0.6rem;
        border-radius: 7px;
    }
    .footer {
        padding: 1rem 0 0.5rem;
    }
    .footer-content {
        gap: 0.5rem;
    }
    .footer-section h3, .footer-section h4 {
        font-size: 0.8rem;
    }
    .footer-section p, .footer-section ul li, .footer-bottom p {
        font-size: 0.75rem;
    }
    #scrollToTopBtn {
        bottom: 5px;
        right: 5px;
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    .highlight-box, .special-section .azubi-box, .special-section .arbeitgeber-box {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin: 0.7rem auto 1.2rem auto !important;
        width: 90vw !important;
        max-width: 90vw !important;
        min-width: 0 !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 12px rgba(37,99,235,0.08) !important;
        background: #f4f7fe !important;
        padding: 1.1rem 1rem !important;
        text-align: center !important;
        float: none !important;
    }
    .highlight-content, .azubi-content, .arbeitgeber-content {
        max-width: 90vw !important;
        width: auto !important;
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        color: #1e293b !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        display: flex !important;
        flex-direction: column !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .special-section h2, .highlight-content h3 {
        font-size: 1.05rem !important;
        margin-bottom: 0.5rem !important;
        color: #2563eb !important;
        font-weight: 700 !important;
        text-align: center !important;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .special-section p, .highlight-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        color: #1e293b !important;
        max-width: 90vw !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .special-section .azubi-box, .special-section .arbeitgeber-box {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 0.7rem !important;
    }
    .special-section {
        margin-bottom: 1.2rem !important;
    }
    .btn, .highlight-content a.btn, .special-section .btn {
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .arbeitgeber-hero {
        height: auto !important;
        min-height: 220px !important;
        padding-top: 70px !important;
        padding-bottom: 30px !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .arbeitgeber-hero .hero-gradient-overlay {
        background: linear-gradient(120deg, rgba(37,99,235,0.65) 0%, rgba(30,41,59,0.85) 100%) !important;
    }
    .arbeitgeber-hero .hero-content {
        padding: 0 4vw !important;
        max-width: 100vw !important;
        text-align: center !important;
    }
    .arbeitgeber-hero .hero-tag {
        font-size: 0.95rem !important;
        padding: 0.4rem 1rem !important;
        margin-bottom: 1.1rem !important;
        background: rgba(255,255,255,0.22) !important;
    }
    .arbeitgeber-hero .hero-title {
        font-size: 1.15rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.25 !important;
        word-break: break-word !important;
    }
    .arbeitgeber-hero .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.1rem !important;
        opacity: 1 !important;
        line-height: 1.4 !important;
        word-break: break-word !important;
    }
    .arbeitgeber-section .arbeitgeber-box {
        flex-direction: column !important;
        align-items: center !important;
        padding: 1.1rem 0.5rem !important;
        gap: 0.7rem !important;
        max-width: 98vw !important;
    }
    .arbeitgeber-section .arbeitgeber-content {
        font-size: 0.98rem !important;
        line-height: 1.6 !important;
        text-align: left !important;
        padding: 0 !important;
    }
    .arbeitgeber-section ul {
        padding-left: 1.1rem !important;
        font-size: 0.98rem !important;
        margin-bottom: 1.1rem !important;
    }
    .arbeitgeber-section ul li {
        margin-bottom: 0.7rem !important;
        line-height: 1.5 !important;
    }
    .contact-section .section-header h2 {
        font-size: 1.05rem !important;
    }
    .contact-section .section-header p {
        font-size: 0.95rem !important;
    }
    .contact-section .contact-info {
        grid-template-columns: 1fr !important;
        gap: 0.7rem !important;
    }
    .contact-section .contact-card h3 {
        font-size: 0.95rem !important;
    }
    .contact-section .contact-card p, .contact-section .contact-card a {
        font-size: 0.93rem !important;
        word-break: break-word !important;
    }
    .contact-form {
        padding: 0.5rem !important;
        border-radius: 7px !important;
    }
    .form-group label {
        font-size: 0.93rem !important;
    }
    .form-group input,
    .form-group textarea {
        font-size: 0.93rem !important;
        padding: 0.6rem !important;
        border-radius: 7px !important;
    }
} 

/* Mobile (Hand) redesign specifically for Arbeitgeber page */
@media (max-width: 480px) {
  .arbeitgeber-page .header {
    top: 2px;
    width: 100vw;
    max-width: 100vw;
    left: 0;
    transform: none;
    border-radius: 8px;
    padding: 2px 0;
  }
  .arbeitgeber-page .logo h2 {
    font-size: 0.9rem;
    padding: 0.2rem 0.3rem;
  }
  .arbeitgeber-page .arbeitgeber-hero {
    min-height: 200px;
    height: auto;
    padding-top: 72px;
    padding-bottom: 24px;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
  }
  .arbeitgeber-page .arbeitgeber-hero .hero-tag {
    font-size: 0.9rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 0.8rem;
  }
  .arbeitgeber-page .arbeitgeber-hero .hero-title {
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
    line-height: 1.25;
    word-break: break-word;
  }
  .arbeitgeber-page .arbeitgeber-hero .hero-subtitle {
    font-size: 0.92rem;
    margin-bottom: 1rem;
    opacity: 1;
    line-height: 1.4;
  }
  .arbeitgeber-page .btn {
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    min-height: 36px;
  }

  /* Why section */
  .arbeitgeber-page #warum-arbeitgeber.special-section {
    margin: 0.6rem 0;
    padding: 0.2rem 0;
    border-radius: 6px;
  }
  .arbeitgeber-page #warum-arbeitgeber .arbeitgeber-box {
    padding: 0.9rem;
    gap: 0.6rem;
    border-radius: 8px;
  }
  .arbeitgeber-page #warum-arbeitgeber .arbeitgeber-icon {
    min-width: 28px;
    min-height: 28px;
    font-size: 0.9rem;
    border-radius: 6px;
  }
  .arbeitgeber-page #warum-arbeitgeber h2 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }
  .arbeitgeber-page #warum-arbeitgeber p {
    font-size: 0.96rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
  }

  /* Benefits section */
  .arbeitgeber-page #arbeitgeber-vorteile .section-header h2 {
    font-size: 1.05rem;
  }
  .arbeitgeber-page #arbeitgeber-vorteile .section-header p {
    font-size: 0.95rem;
  }
  .arbeitgeber-page #arbeitgeber-vorteile .benefits-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .arbeitgeber-page #arbeitgeber-vorteile .benefit-card {
    padding: 1rem;
    border-radius: 10px;
    background: #ffffff;
  }
  .arbeitgeber-page #arbeitgeber-vorteile .benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.1rem;
  }
  .arbeitgeber-page #arbeitgeber-vorteile .benefit-card h3 {
    font-size: 1.02rem;
  }
  .arbeitgeber-page #arbeitgeber-vorteile .benefit-card p {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  /* CTA/Highlight section */
  .arbeitgeber-page #arbeitgeber-beratung .highlight-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 10px;
    background: #eaf1ff; /* stays bright for readability */
  }
  .arbeitgeber-page #arbeitgeber-beratung .highlight-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    font-size: 1.1rem;
  }
  .arbeitgeber-page #arbeitgeber-beratung .highlight-content h3 {
    font-size: 1.02rem;
    margin-bottom: 0.4rem;
  }
  .arbeitgeber-page #arbeitgeber-beratung .highlight-content p {
    font-size: 0.96rem;
    line-height: 1.5;
  }
} 