/* Firmen-Bienen-Patenschaft Styles */
.company-bees-section {
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 1200px;
}

.company-bees-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.company-bees-title {
    color: var(--gold);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.company-bees-content {
    margin-bottom: 3rem;
    text-align: center;
}

.company-bees-intro,
.company-bees-description {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.company-bees-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--gold);
    font-size: 1.1rem;
}

.required {
    color: #ff9800;
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--gold);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    background: #fff;
}

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

.char-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: right;
}

.submit-button {
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-weight: bold;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .company-bees-section {
        padding: 2rem 1rem;
    }

    .company-bees-container {
        padding: 1.5rem;
    }

    .company-bees-title {
        font-size: 2rem;
    }

    .company-bees-intro,
    .company-bees-description {
        font-size: 1rem;
    }
}
