* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
::placeholder{
    color: #3c6e22;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
}
/* Çerez Politikası Kutusu */
.cookie-box {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #f8f5f0 0%, #fff 100%);
    border: 2px solid #3c6e22;

    padding: 20px;
    max-width: 320px;
    box-shadow: 0 8px 25px rgba(89, 56, 25, 0.15);
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    display: block;
    animation: slideIn 0.5s ease-out;
}

.kvkk_page{
    margin-top: 1rem;
    text-align: center;
}

.kvkk_page a{
    text-decoration: none;
    color:#3c6e22;
    font-size: 13px; 
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cookie-box.hidden {
    display: none;
}

.cookie-content p {
    margin: 0 0 15px 0;
    color: #3c6e22;
    font-weight: 400;
}

.cookie-content a {
    color: #3c6e22 !important;
    font-weight: 600;
    text-decoration: underline !important;
    transition: color 0.3s ease;
}

.cookie-content a:hover {
    color: #3c6e22 !important;
}

.cookie-btn {
    background: #3c6e22;
    color: white;
    border: none;
    padding: 12px 20px;

    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(89, 56, 25, 0.2);
}

.cookie-btn:hover {
    background: linear-gradient(135deg, #4a2f15 0%, #3a2410 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(89, 56, 25, 0.3);
}

.cookie-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(89, 56, 25, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-box {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
    }
}
li{
    list-style: none;
}

body {
    background-color: #f5f5f5;
}

   .error-message {
            color: #d9534f;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }

.main_section {
    display: flex;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

.image-section {
    flex: 3.4;
    background-color: #e9efe9;
    position: relative;
    overflow: hidden;
}

.image-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 40px;
    background-image: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.1));
}

.placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo {
    text-align: center;
    margin-top: auto;
}

.logo img {
    max-width: 250px;
    width: 80%;
}

.form-section {
    flex: 1;
    padding: 70px 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    color: #3c6e22;
    font-size: 1.8vw;
    letter-spacing: 0.010rem;
    font-weight: 550;
    line-height: 2.5rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px 5px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #3c6e22;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}
.checkbox-container input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    border: 2px solid #426a2b;
    border-radius: 50%;
    margin-right: 1px;
    position: relative;
    cursor: pointer;
    background-color: white;
    flex-shrink: 0;
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #426a2b;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 8px;
}

.checkbox-container label {
    color: #426a2b;
    font-size: 16px;
    cursor: pointer;
    line-height: 1.4;
    flex: 1;
    margin-top: 2px;
}

.modal {
    overflow: hidden;
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 7% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
    width: 80%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

.modal-header {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.modal-header h2 {
    margin: 0;
    color: #426a2b;
}

.submit-btn {
    background-color: #426a2b;
    color: white;
    border: none;
    padding: 25px 0;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 1px;
    transition: background-color 0.3s;
    position: relative;
}

.submit-btn:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1px;
    pointer-events: none;
}

.submit-btn:hover {
    background-color: #354f24;
}
.alert {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Responsive */
@media (max-width: 1200px) {
    
    .form-title {
        font-size: 24px;
        line-height: 2rem;
    }
}

@media (max-width: 992px) {
    .main_section {
        flex-direction: column;
        min-height: auto;
    }
	
	
    
    .image-section {
        flex: none;
        height: 50vh;
        min-height: 400px;
    }
    
    .form-section {
        flex: none;
        padding: 50px 40px;
    }
    
    .form-title {
        font-size: 22px;
        line-height: 1.8rem;
    }
    
    ::placeholder {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .image-section {
        height: 100%;
        min-height: 300px;
    }
    
    .form-section {
        padding: 40px 30px;
    }
    
    .form-title {
        font-size: 20px;
        line-height: 1.6rem;
    }
    
    .checkbox-container label {
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 20px 0;
        font-size: 16px;
    }
    
    .modal-content {
        width: 90%;
        margin: 13% auto;
        padding: 15px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .image-section {
        height: 30vh;
        min-height: 200px;
    }
    
    .form-section {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 18px;
        line-height: 1.5rem;
        margin-bottom: 20px;
    }
    
    .form-control {
        font-size: 14px;
        padding: 8px 5px;
    }
    
    ::placeholder {
        font-size: 14px;
    }
    
  
    .checkbox-container label {
        font-size: 12px;
    }
    
    .submit-btn {
        padding: 15px 0;
        font-size: 14px;
    }
    
    .alert {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .image-section {
        height: 100%;
        min-height: 180px;
    }
    
    .form-title {
        font-size: 16px;
        line-height: 1.4rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .checkbox-container {
        margin-bottom: 15px;
    }
    
    .modal-content {
        width: 95%;
        padding: 10px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
}

/* Ekran yüksekliği için özel düzenleme */
@media (max-height: 700px) {
    .form-section {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    textarea.form-control {
        min-height: 60px;
    }
}

/* Geniş ekranlar için ek düzenleme */
@media (min-width: 1600px) {
    .form-title {
        font-size: 28px;
        line-height: 3rem;
    }
    
    .form-control {
        font-size: 18px;
        padding: 12px 5px;
    }
    
    ::placeholder {
        font-size: 18px;
    }
    
    .submit-btn {
        padding: 30px 0;
        font-size: 20px;
    }
}