        body {
            padding-top: 100px;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;


        }

        .top-area {
            background-color: transparent;
            color: #000;
        }

        .navbar {
            padding-top: 1rem;
            padding-bottom: 1rem;
            font-size: 1.15rem;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            border-top: 3px solid #dee2e6;
            border-bottom: 3px solid #dee2e6;
  
        }

        .navbar-logo {
            height: 60px;
            width: auto;
        }

        .h1-header {
            display: inline-block;
            font-size: 28px;
            margin-left: 15px;
            color: #000;
            font-weight: 700;
        }

        .navbar-light .navbar-nav .nav-link {
            color: #000;
            font-weight: 500;
            margin-left: 10px;
            margin-right: 10px;
            transition: color 0.3s ease;
        }

        .navbar-light .navbar-nav .nav-link:hover {
            color: #007bff;
        }

        /* Intro Section */
        #intro-section {
            position: relative;
            width: 100%;
            height: 75vh;
            background: url("{% static 'assets/images/about/firefighters.png' %}") no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        #intro-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* dunkler Overlay */
            z-index: 1;
        }

        .intro-text {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .intro-text h2 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.4;
        }

        .intro-text span {
            color: #ffc107;
        }

        @media (max-width: 768px) {
            .intro-text h2 {
                font-size: 2rem;
            }
        }