* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', Arial, sans-serif;
    color: #333333;
    background-color: #ffffff;
    line-height: 1.5;
}

/* Header */
.header {
    background-color: #333333;
    padding: 20px 0;
    width: 100%;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.logo {
    height: 60px;
    width: auto;
    display: block;
    transform: scale(3.9);
}

.section {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 100px;

}

/* Sol Taraf - Faydalar */
.benefits-container {
    width: 25%;
    flex-shrink: 0;
    position: relative;
}

.benefits-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 36px;
    line-height: 48px;
    text-align: center; 
    margin-bottom: 50px;
    margin-top: 0px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding: 0 30px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
}

.benefit-description {
    font-size: 12px;
    line-height: 16px;
    width: 250px;
}

/* Sağ Taraf - Form */
.form-container {
    width: 75%;
    flex-shrink: 0;

    padding-bottom: 16px;
}

.form-header {
    border-bottom: 3px solid #af9d90;
    padding-bottom: 15px;
    margin-bottom: 16px;
}

.form-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: normal;
}

.loyalty-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-group label {
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 2px;
    padding-top: 2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    height: 44px;
    padding: 0 12px;
    border: 1px solid #6f6f6f;
    background-color: #ffffff;
    font-size: 14px;
    font-family: 'Helvetica', Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #333333;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5" stroke="%23333333" stroke-width="2"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 40px;
}

.date-input {
    background-image: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="2" y="4" width="14" height="12" stroke="%234a4f54" stroke-width="1.5"/><path d="M6 2v4M12 2v4M2 8h14" stroke="%234a4f54" stroke-width="1.5"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 40px;
}

.date-input::placeholder {
    color: #4a4f54;
    font-size: 12px;
}

.error-message {
    display: none;
    font-size: 14px;
    line-height: 20px;
    color: #f2086c;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input {
    border-color: #f2086c;
}

/* Onay Bölümü */
.consent-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 5px;
}

.consent-header {
    font-size: 12px;
    line-height: 16px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #351704;
    margin-top: 0;
    cursor: pointer;
    appearance: none;
    background-color: #ffffff;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: #351704;
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 5l3.5 3.5L11 1" stroke="white" stroke-width="2"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.checkbox-group label {
    font-size: 12px;
    line-height: 16px;
    cursor: pointer;
    flex: 1;
}

.checkbox-group label strong {
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: bold;
}

.disclaimer {
    font-size: 11px;
    line-height: 16.5px;
    margin-top: 4px;
}

.disclaimer u {
    font-family: 'Times New Roman', Times, serif;
}

/* Submit Button */
.submit-button {
    width: 259px;
    height: 48px;
    background-color: #333333;
    border: 1px solid #333333;
    color: #ffffff;
    font-size: 12px;
    line-height: 16px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 4px;
}

.submit-button:hover {
    background-color: #1a1a1a;
}

.submit-button:active {
    background-color: #000000;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .section {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .benefits-container,
    .form-container {
        width: 100%;
        max-width: 518px;
    }

    .benefits-title {
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .form-container {
        padding-top: 20px;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .section {
        padding: 20px 15px;
    }

    .benefits-title {
        font-size: 28px;
        line-height: 36px;
    }

    .submit-button {
        width: 100%;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-icon.success {
    background-color: #E8F5E9;
}

.modal-icon.error {
    background-color: #FFEBEE;
}

.modal-icon svg {
    width: 48px;
    height: 48px;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333333;
}

.modal-message {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.modal-button {
    background-color: #C4A574;
    color: #ffffff;
    border: none;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    min-width: 140px;
}

.modal-button:hover {
    background-color: #B39565;
    transform: translateY(-1px);
}

.modal-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 32px 24px;
        max-width: 340px;
    }

    .modal-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .modal-icon svg {
        width: 40px;
        height: 40px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-message {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .modal-button {
        padding: 12px 36px;
        font-size: 14px;
    }
}
