
.content {
    position: relative;
    width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
}

.content h1 {
    font-size: 48px;
    font-family: 'STIX Two Text', serif;
    font-weight: 700;
    line-height: 1.5;
    color: #333;
    margin: 0 0 20px 0;
    text-align: center;
}

.content .description {
    font-size: 18px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    margin: 0 0 50px 0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group .required {
    color: #e74c3c;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--website-color-primary);
    box-shadow: 0 0 0 3px rgba(11, 112, 206, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.form-textarea {
    width: 100%;
    min-height: 180px;
    padding: 12px 15px;
    font-size: 16px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--website-color-primary);
    box-shadow: 0 0 0 3px rgba(11, 112, 206, 0.1);
}

.form-textarea::placeholder {
    color: #999;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    user-select: none;
}

.custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-box {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid var(--website-color-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkbox-box {
    background-color: rgba(11, 112, 206, 0.05);
}

.custom-checkbox:checked ~ .checkbox-box {
    background-color: var(--website-color-primary);
}

.checkbox-box:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox:checked ~ .checkbox-box:after {
    display: block;
}

.checkbox-text {
    font-size: 16px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    color: #333;
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--website-color-primary);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.submit-button {
    min-width: 200px;
}





