.koebes-signatur-generator {
    max-width: 950px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.koebes-signatur-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.koebes-signatur-card h2 {
    margin: 0 0 10px;
    color: #2e2e2b;
    font-size: 28px;
}

.koebes-signatur-intro {
    margin: 0 0 30px;
    color: #666662;
    font-size: 14px;
}

.koebes-form-section {
    margin-bottom: 35px;
}

.koebes-form-section h3 {
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;
    color: #2e2e2b;
    font-size: 18px;
}

.koebes-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 20px;
}

.koebes-form-grid p,
.koebes-form-section p {
    margin: 0;
}

.koebes-signatur-generator label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2e2e2b;
}

.koebes-signatur-generator input,
.koebes-signatur-generator select,
.koebes-signatur-generator textarea {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #d9d9d6;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: all .2s ease;
    background: #fff;
}

.koebes-signatur-generator textarea {
    min-height: 95px;
    padding: 12px 14px;
    resize: vertical;
}

.koebes-signatur-generator input:focus,
.koebes-signatur-generator select:focus,
.koebes-signatur-generator textarea:focus {
    outline: none;
    border-color: #ab1c30;
    box-shadow: 0 0 0 3px rgba(171,28,48,.15);
}

.koebes-signatur-generator small {
    display: block;
    margin-top: 6px;
    color: #666662;
    font-size: 12px;
}

.koebes-checkbox-row label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.koebes-checkbox-row input[type="checkbox"] {
    width: 18px;
    min-height: 18px;
    height: 18px;
    padding: 0;
}

.koebes-form-actions {
    margin-top: 30px;
}

.koebes-form-actions button {
    background: #ab1c30;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.koebes-form-actions button:hover {
    background: #8f1728;
    transform: translateY(-1px);
}

.koebes-form-actions button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .koebes-signatur-card {
        padding: 20px;
    }

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

    .koebes-signatur-card h2 {
        font-size: 24px;
    }

    .koebes-signatur-generator input,
    .koebes-signatur-generator select,
    .koebes-signatur-generator textarea {
        font-size: 16px;
    }

    .koebes-form-actions button {
        width: 100%;
    }
}
