/* ==========================================================================
   Messie Berlin - Wohnungsauflösungen
   Design inspiriert von BSR.de - Orange/Weiß Farbschema
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-orange: #FF6600;
    --primary-orange-dark: #E55A00;
    --primary-orange-light: #FF8533;
    --secondary-dark: #333333;
    --secondary-gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #222222;
    --text-light: #555555;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-top {
    background: var(--secondary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: var(--white);
}

.header-top a:hover {
    color: var(--primary-orange);
}

.phone-number {
    font-weight: 700;
    font-size: 16px;
}

.phone-number i {
    margin-right: 8px;
    color: var(--primary-orange);
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-dark);
}

.logo-text span {
    color: var(--primary-orange);
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu > a,
.nav-menu > .nav-dropdown > a {
    color: var(--secondary-dark);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
    display: block;
}

.nav-menu > a::after,
.nav-menu > .nav-dropdown > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after,
.nav-menu > .nav-dropdown > a:hover::after,
.nav-menu > .nav-dropdown > a.active::after {
    width: 100%;
}

.nav-menu > a:hover,
.nav-menu > .nav-dropdown > a:hover {
    color: var(--primary-orange);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown > a i {
    font-size: 12px;
    transition: var(--transition);
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--secondary-dark);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.nav-dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-orange);
    border-left-color: var(--primary-orange);
}

.nav-dropdown-menu a i {
    margin-right: 10px;
    color: var(--primary-orange);
    width: 20px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-dark);
    transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, rgba(229,90,0,0.85) 0%, rgba(255,102,0,0.8) 100%),
                url('../img/hero-startseite.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 200px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

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

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

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

.btn-orange:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--secondary-dark);
    margin-bottom: 15px;
}

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

.section-header .accent {
    color: var(--primary-orange);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 36px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--secondary-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card .btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */
.why-us {
    padding: 80px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-us-item {
    text-align: center;
    padding: 30px 20px;
}

.why-us-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.why-us-item h3 {
    font-size: 18px;
    color: var(--secondary-dark);
    margin-bottom: 10px;
}

.why-us-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
    background: var(--white);
    border-radius: 12px;
    padding: 30px 20px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 3px;
    background: var(--primary-orange);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255,102,0,0.3);
}

.process-step h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-orange);
}

.testimonial-stars {
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-dark);
}

.testimonial-location {
    color: var(--text-light);
    font-size: 14px;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--secondary-dark);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item-text strong {
    display: block;
    color: var(--secondary-dark);
}

.contact-item-text span {
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--text-light);
}

.form-checkbox a {
    color: var(--primary-orange);
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--secondary-dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .logo-icon {
    background: var(--primary-orange);
}

.footer-about .logo-text {
    color: var(--white);
}

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

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-orange);
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: rgba(255,255,255,0.7);
}

.footer-column ul a:hover {
    color: var(--primary-orange);
}

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

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

.footer-bottom a {
    color: var(--primary-orange);
}

/* ==========================================================================
   Page Header (Unterseiten)
   ========================================================================== */
.page-header {
    background: linear-gradient(135deg, rgba(229,90,0,0.85) 0%, rgba(255,102,0,0.8) 100%),
                url('../img/hero-default.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.content-section {
    padding: 80px 0;
}

.content-section.alt {
    background: var(--light-gray);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 32px;
    color: var(--secondary-dark);
    margin-bottom: 20px;
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-list {
    margin-bottom: 30px;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.content-list li i {
    color: var(--primary-orange);
    font-size: 20px;
    margin-top: 2px;
}

.content-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Price Box */
.price-box {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--primary-orange);
}

.price-box h3 {
    font-size: 24px;
    color: var(--secondary-dark);
    margin-bottom: 10px;
}

.price-box .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
}

.price-box .price span {
    font-size: 18px;
    color: var(--text-light);
}

.price-box p {
    color: var(--text-light);
    margin: 15px 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-dark);
}

.faq-question i {
    color: var(--primary-orange);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .process-step {
        margin-bottom: 20px;
        padding: 25px 15px;
    }

    .process-step::after {
        display: none;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .process-step h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .process-step p {
        font-size: 15px;
    }

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

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .content-grid.reverse {
        direction: ltr;
    }
}

/* Mobile Call Button - hidden on desktop */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-orange);
    color: var(--white);
    text-align: center;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.mobile-call-btn:hover {
    background: var(--primary-orange-dark);
}

.mobile-call-btn i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > a,
    .nav-menu > .nav-dropdown > a {
        padding: 15px 0;
        border-bottom: 1px solid var(--light-gray);
        text-align: center;
        width: 100%;
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 500px;
    }

    .nav-dropdown-menu a {
        padding: 12px 20px 12px 30px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .process {
        padding: 60px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .process-step {
        padding: 25px 20px;
        position: relative;
        margin-bottom: 0;
    }

    .process-step::after {
        display: none;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .process-step h3 {
        font-size: 18px;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .process-step p {
        font-size: 15px;
        line-height: 1.6;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Mobile Call Button */
    .mobile-call-btn {
        display: flex;
    }

    body {
        padding-bottom: 65px;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center {
    text-align: center;
}

.text-orange {
    color: var(--primary-orange);
}

.mb-0 {
    margin-bottom: 0;
}

.mt-30 {
    margin-top: 30px;
}

.hidden {
    display: none;
}

/* ==========================================================================
   Service Areas / Stadtteile Section
   ========================================================================== */
.service-areas {
    padding: 60px 0;
    background: var(--light-gray);
}

.service-areas .section-header {
    margin-bottom: 30px;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.district-item {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: var(--secondary-dark);
    transition: var(--transition);
    border: 2px solid transparent;
}

.district-item:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.district-item i {
    margin-right: 8px;
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================================================
   Ratgeber/Article Pages Styles
   ========================================================================== */

/* Article Breadcrumb */
.article-breadcrumb {
    padding: 15px 0;
    background: var(--light-gray);
    font-size: 0.9rem;
    margin-top: 120px; /* Account for fixed header */
}

.article-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.article-breadcrumb a:hover {
    color: var(--primary-orange);
}

/* Breadcrumb Separator */
.breadcrumb-separator {
    color: var(--secondary-gray);
    margin: 0 10px;
}

/* Main Content Layout */
.main-content {
    padding: 40px 0;
    background: var(--white);
}

.main-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Article Content */
.article-content {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.article-header {
    padding: 30px 0;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 30px;
}

.article-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.article-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    color: var(--secondary-gray);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: var(--primary-orange);
}

/* Content Wrapper */
.article-content-wrapper {
    padding: 0;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-orange);
    padding-left: 20px;
}

.content-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.content-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-section ul, .content-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-section li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, rgba(255,102,0,0.05), rgba(255,102,0,0.1));
    border: 1px solid rgba(255,102,0,0.2);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.highlight-box h3 {
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Feature Grids */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Comparison Tables */
.comparison-table {
    margin: 30px 0;
}

.comparison-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.comparison-normal, .comparison-messie {
    padding: 25px;
    border-radius: 12px;
    border: 2px solid;
}

.comparison-normal {
    background: rgba(76, 175, 80, 0.05);
    border-color: rgba(76, 175, 80, 0.3);
}

.comparison-messie {
    background: rgba(255, 152, 0, 0.05);
    border-color: rgba(255, 152, 0, 0.3);
}

.comparison-normal h4, .comparison-messie h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 700;
}

.comparison-normal h4 {
    color: #4CAF50;
}

.comparison-messie h4 {
    color: #FF9800;
}

.comparison-normal ul, .comparison-messie ul {
    list-style: none;
    padding: 0;
}

.comparison-normal li, .comparison-messie li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.comparison-normal li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.comparison-messie li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #FF9800;
    font-weight: bold;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
    text-align: center;
}

.stat-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 30px 20px;
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Impact Areas */
.impact-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.impact-area {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 25px;
}

.impact-area h3 {
    color: var(--primary-orange);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.impact-area ul {
    list-style: none;
    padding: 0;
}

.impact-area li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.impact-area li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* CTA Inline */
.cta-inline {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    color: var(--white);
}

.cta-inline h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-inline p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-inline .btn {
    background: var(--white);
    color: var(--primary-orange);
    font-weight: 700;
}

.cta-inline .btn:hover {
    background: var(--light-gray);
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-box {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.sidebar-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 15px;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.sidebar-links a:hover {
    background: var(--light-gray);
    color: var(--primary-orange);
}

.sidebar-links a i {
    color: var(--primary-orange);
    width: 20px;
    text-align: center;
}

.contact-box {
    background: linear-gradient(135deg, var(--primary-orange-light), var(--primary-orange));
    border-color: var(--primary-orange);
    color: var(--white);
}

.contact-box h3 {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.contact-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.emergency-box {
    background: linear-gradient(135deg, #FF5722, #E64A19);
    border-color: #FF5722;
    color: var(--white);
}

.emergency-box h3 {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.emergency-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

/* Causes Grid */
.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.cause-category {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.cause-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: var(--white);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cause-header i {
    font-size: 1.5rem;
}

.cause-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.cause-content {
    padding: 25px;
}

.cause-content ul {
    list-style: none;
    padding: 0;
}

.cause-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.cause-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.cause-content strong {
    color: var(--text-dark);
}

/* Timeline Events */
.timeline-events {
    margin: 30px 0;
}

.timeline-event {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
}

.timeline-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    margin-bottom: 0;
}

/* Cycle Diagram */
.cycle-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 16px;
}

.cycle-step {
    background: var(--white);
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    max-width: 180px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.cycle-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    margin-top: 10px;
}

.cycle-step p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.cycle-arrow {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Prevention Tips */
.prevention-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.prevention-tip {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.prevention-tip i {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-top: 5px;
}

.prevention-tip h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.prevention-tip p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Signs Grid */
.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.sign-category {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.sign-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: var(--white);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sign-header i {
    font-size: 1.5rem;
}

.sign-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.sign-category ul {
    padding: 25px;
    margin: 0;
    list-style: none;
}

.sign-category li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.sign-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.sign-category strong {
    color: var(--text-dark);
}

/* Behavior Signs */
.behavior-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.behavior-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.behavior-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
    display: block;
}

.behavior-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.behavior-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Severity Levels */
.severity-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.level {
    padding: 20px;
    border-radius: 12px;
    border: 2px solid;
    text-align: center;
}

.level h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.level p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.level-1 {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
    color: #2E7D32;
}

.level-2 {
    background: rgba(255, 193, 7, 0.1);
    border-color: #FFC107;
    color: #F57C00;
}

.level-3 {
    background: rgba(255, 152, 0, 0.1);
    border-color: #FF9800;
    color: #E65100;
}

.level-4 {
    background: rgba(244, 67, 54, 0.1);
    border-color: #F44336;
    color: #C62828;
}

/* Risk Groups */
.risk-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.risk-group {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.risk-group i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
    display: block;
}

.risk-group h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.risk-group p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Help Options */
.help-options {
    margin: 30px 0;
}

.help-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    margin-bottom: 20px;
}

.help-option.urgent {
    background: linear-gradient(135deg, rgba(255,102,0,0.05), rgba(255,102,0,0.1));
    border-color: var(--primary-orange);
}

.help-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.help-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.help-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Professional Help */
.professional-help {
    margin: 30px 0;
}

.help-category {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
}

.help-category h3 {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: var(--white);
    padding: 20px 25px;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.help-category i {
    font-size: 1.5rem;
}

.help-items {
    padding: 25px;
}

.help-item {
    margin-bottom: 25px;
}

.help-item:last-child {
    margin-bottom: 0;
}

.help-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.help-item p {
    margin-bottom: 15px;
}

.help-item ul {
    list-style: none;
    padding: 0;
}

.help-item li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.help-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Self Help Steps */
.self-help-steps {
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 25px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
}

.step-item .step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    position: static;
    transform: none;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-content p {
    margin-bottom: 0;
}

/* Family Help */
.family-help {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.help-tip {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.help-tip i {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-top: 5px;
}

.help-tip h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.help-tip p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Don't List */
.dont-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.dont-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(244, 67, 54, 0.05);
    border: 1px solid rgba(244, 67, 54, 0.2);
    border-radius: 8px;
    font-weight: 500;
}

.dont-item i {
    color: #F44336;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Financing Info */
.financing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.finance-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 25px;
}

.finance-item h4 {
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.finance-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, #FF5722, #E64A19);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    color: var(--white);
}

.emergency-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.emergency-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.emergency-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-buttons .btn {
    background: var(--white);
    color: #FF5722;
    border: 2px solid var(--white);
    font-weight: 700;
}

.emergency-buttons .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.emergency-buttons .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.emergency-buttons .btn-outline:hover {
    background: var(--white);
    color: #FF5722;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .article-breadcrumb {
        margin-top: 100px; /* Adjust for smaller mobile header */
        padding: 12px 0;
    }
    
    .main-content .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .features-grid, .causes-grid, .signs-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .cycle-diagram {
        flex-direction: column;
    }
    
    .cycle-arrow {
        transform: rotate(90deg);
    }
    
    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .emergency-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
