        .pars-locations-wrapper {
            max-width: 900px;
            margin: 60px auto 100px;
            padding: 0 20px;
        }

        /* Trigger (Buton) Tasarımı */
        .location-trigger {
            background-color: #ffffff;
            color: #103b7b;
            cursor: pointer;
            padding: 30px;
            width: 100%;
            text-align: left;
            border: 1px solid #eee;
            border-left: 8px solid #103b7b;
            outline: none;
            transition: all 0.3s ease;
            margin-top: 15px;
            display: block;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
        }

        /* Çakışmayı önlemek için class ismini 'is-open' yaptık */
        .is-open,
        .location-trigger:hover {
            background-color: #fcfcfc;
            border-left-color: #ff6b00;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
        }

        .trigger-body {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .loc-city {
            font-size: 1.6rem;
            font-weight: 800;
            color: #103b7b;
            text-transform: uppercase;
        }

        .loc-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-top: 5px;
        }

        .loc-job {
            font-size: 0.95rem;
            color: #777;
            font-style: italic;
        }

        .loc-tel {
            font-size: 1rem;
            color: #444;
            margin-top: 10px;
        }

        .loc-mail {
            color: #ff6b00;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            margin-top: 2px;
            width: fit-content;
        }

        .loc-mail:hover {
            text-decoration: underline;
        }

        /* Panel ve Form Design */
        .location-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
            background: #fff;
            border: 1px solid #eee;
            border-top: none;
        }

        .is-open+.location-panel {
            max-height: 1000px;
            transition: max-height 1s ease-in-out;
        }

        .pars-inner-form {
            padding: 40px;
            background: #fafafa;
        }

        .pars-input-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        /* Eingabefelder Design (İnce İşçilik) */
        .pars-inner-form input,
        .pars-inner-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e1e1e1;
            border-radius: 6px;
            font-size: 1rem;
            background: #fff;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .pars-inner-form input:focus,
        .pars-inner-form textarea:focus {
            border-color: #ff6b00;
            outline: none;
            box-shadow: 0 0 10px rgba(255, 107, 0, 0.1);
        }

        .pars-form-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
        }

        .dsgvo-label {
            font-size: 0.85rem;
            color: #666;
            cursor: pointer;
        }

        .dsgvo-label a {
            color: #103b7b;
            text-decoration: none;
            font-weight: bold;
        }

        .pars-send-btn {
            background: #103b7b;
            color: #fff;
            border: none;
            padding: 15px 40px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .pars-send-btn:hover {
            background: #ff6b00;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .pars-input-row {
                flex-direction: column;
                gap: 15px;
            }

            .pars-form-bottom {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
        }