/* Kontaktformulärsektion */
.contact-form-section {
    background-color: #f6efe8;
    padding: 5rem 0rem;
    display: flex;
    justify-content: center;
}

.contact-form-container {
    display: flex;
    width: 100%;
    gap: 2rem;
    max-width: 92.5rem;
    justify-content: center;
    margin-left: 3.125rem;
    margin-right: 3.125rem;
    min-height: 28rem;
}

@media (max-width: 992px) {
    .contact-form-container {
        flex-direction: column;
        margin-left: 1.125rem;
        margin-right: 1.125rem;
    }
}

.contact-form-left {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-title {
    font-size: 60px;
    font-weight: normal;
    font-family: 'Serifa', sans-serif;
    margin-bottom: 1rem;
    line-height: 62px;
}

@media (max-width: 992px) {
    .contact-form-title {
        font-size: 32px;
        font-weight: normal;
        font-family: 'Serifa', sans-serif;
        line-height: 48px;
    }
}

.contact-form-description {
    font-size: 1rem;
    color: #555;
    font-family: 'Serfia', sans-serif;
    margin-bottom: 2rem;
    flex-grow: 1;
    margin-top: 37px;
}

@media (max-width: 992px) {
    .contact-form-description {
        font-size: 1rem;
        color: #555;
        font-family: 'Serifa', sans-serif;
        margin-bottom: 1rem;
        flex-grow: 1;
        margin-top: 7px;
    }
}

.social-media {
    margin-top: 2rem;
}

.social-media p {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0.5rem;
}

/* Formulärstil */
.contact-form-right {
    flex: 1;
    border-radius: 12px;
    width: 70%;
    padding: 0rem;
}

@media (max-width: 992px) {
    .contact-form-right {
        width: 100%;
    }
}

.contact-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #333;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    padding: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
}

.contact-form .form-group textarea {
    resize: none;
}

.contact-form .form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .submit-button {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .submit-button:hover {
    background-color: #FFC107;
}
