.ragunda-forms {
    background: #fffbe6;
    color: #1d1d1d;
    padding: 80px 0;
    position: relative;
}

.ragunda-forms__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.ragunda-forms__content {
    max-width: 1200px;
    margin: 0 auto;
}

.ragunda-forms__title {
    font-family: 'Gotkin', var(--ragunda-font, Arial, sans-serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: #1d1d1d;
    line-height: 1.2;
    width: 60%;
    max-width: 720px;
}

.ragunda-forms__description {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #1d1d1d;
    margin: 0 0 3rem 0;
    width: 60%;
    max-width: 720px;
}

.ragunda-forms__description p {
    margin: 0 0 1.5rem 0;
}

.ragunda-forms__description p:last-child {
    margin-bottom: 0;
}

.ragunda-forms__contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 60%;
    max-width: 720px;
}

.ragunda-forms__email {
    flex-shrink: 0;
}

.ragunda-forms__email-link {
    color: #1d1d1d;
    text-decoration: none;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.ragunda-forms__email-link:hover {
    color: #666;
    text-decoration: none;
}

.ragunda-forms__social-media {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.ragunda-forms__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #1d1d1d;
    border-radius: 8px;
    color: #1d1d1d;
    text-decoration: none;
    transition: all 0.2s ease;
    background: transparent;
}

.ragunda-forms__social-link:hover {
    background: #1d1d1d;
    color: #fffbe6;
    text-decoration: none;
    transform: translateY(-2px);
}

.ragunda-forms__social-link svg {
    width: 20px;
    height: 20px;
}

.ragunda-forms__form-container {
    margin-top: 2rem;
}

/* Formidable Forms styling */
.ragunda-forms__form-container .frm_forms {
    max-width: 100%;
}

.ragunda-forms__form-container .frm_forms .form-field {
    margin-bottom: 2rem;
}

.ragunda-forms__form-container .frm_forms label {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1d;
    margin-bottom: 0.5rem;
    display: block;
}

.ragunda-forms__form-container .frm_forms input[type="text"],
.ragunda-forms__form-container .frm_forms input[type="email"],
.ragunda-forms__form-container .frm_forms input[type="tel"],
.ragunda-forms__form-container .frm_forms textarea {
    width: 100% !important;
    border: none !important;
    border-bottom: 1px solid #1d1d1d !important;
    background: transparent !important;
    padding: 0.75rem 0 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 16px !important;
    color: #1d1d1d !important;
    transition: border-color 0.2s ease !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.ragunda-forms__form-container .frm_forms input[type="text"]:focus,
.ragunda-forms__form-container .frm_forms input[type="email"]:focus,
.ragunda-forms__form-container .frm_forms input[type="tel"]:focus,
.ragunda-forms__form-container .frm_forms textarea:focus {
    outline: none !important;
    border-bottom-color: #666 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.ragunda-forms__form-container .frm_forms textarea {
    min-height: 120px;
    resize: vertical;
}

.ragunda-forms__form-container .frm_forms .frm_checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.ragunda-forms__form-container .frm_forms .frm_checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #1d1d1d;
}

.ragunda-forms__form-container .frm_forms .frm_checkbox label {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.ragunda-forms__form-container .frm_forms .frm_button_submit {
    display: inline-block !important;
    border: 2px solid #1d1d1d !important;
    border-radius: 10px !important;
    padding: 0.6em 1.4em !important;
    background: none !important;
    color: #1d1d1d !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s !important;
    cursor: pointer !important;
    width: auto !important;
    box-shadow: none !important;
    text-align: left !important;
    align-self: flex-start !important;
    margin-top: 1rem !important;
    outline: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.ragunda-forms__form-container .frm_forms .frm_button_submit:hover,
.ragunda-forms__form-container .frm_forms .frm_button_submit:focus {
    background: #1d1d1d !important;
    color: #fffbe6 !important;
    border-color: #1d1d1d !important;
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.ragunda-forms__form-container .frm_forms .frm_button_submit:after {
    display: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .ragunda-forms {
        padding: 60px 0;
        margin-left: -2rem;
        margin-right: -2rem;
        width: calc(100% + 4rem);
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ragunda-forms__container {
        padding: 0 1.5rem;
    }
    
    .ragunda-forms__title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: none;
    }
    
    .ragunda-forms__description {
        width: 100%;
        max-width: none;
    }
    
    .ragunda-forms__contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
        max-width: none;
    }
    
    .ragunda-forms__social-media {
        margin-left: 0;
    }
    
    .ragunda-forms__form-container .frm_forms .frm_checkbox {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .ragunda-forms {
        padding: 40px 0;
        margin-left: -2rem;
        margin-right: -2rem;
        width: calc(100% + 4rem);
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ragunda-forms__container {
        padding: 0 1.5rem;
    }
    
    .ragunda-forms__title {
        font-size: 1.75rem;
        width: 100%;
        max-width: none;
    }
    
    .ragunda-forms__description {
        font-size: 14px;
        width: 100%;
        max-width: none;
    }
    
    .ragunda-forms__contact-info {
        width: 100%;
        max-width: none;
    }
} 