.contact-info-section {    background-color: #f04f0b;    color: white;    display: flex;    flex-wrap: wrap;    justify-content: center;    padding: 40px 20px;    gap: 50px;    text-align: center;    font-family: 'Arial', sans-serif;}.contact-box {    min-width:400px;}.contact-box i {    font-size: 28px;    margin-bottom: 15px;    background-color: white;    color: #f04f0b;    padding: 10px;    border-radius: 10px;}.contact-box p {    font-size: 16px;    line-height: 1.6;}.form-outer-wrapper {    position: relative;    height: 800px; /* örnek yüksekliği sen içerik durumuna göre ayarla */    background-color: #f3f3f3;}.form-container {    position: sticky;    top: calc(50vh - 250px); /* 250px: form yüksekliğinin yarısı */    transition: top 0.3s ease;}.form-container {    max-width: 600px;    margin: 80px auto;    background-color: #fff;    padding: 40px;    border-radius: 10px;    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);}.form-container h2 {    text-align: center;    margin-bottom: 30px;    font-weight: 600;    color: #111827;}.form-group {    margin-bottom: 20px;}.form-group input,.form-group textarea {    width: 100%;    padding: 14px;    font-size: 15px;    border-radius: 6px;    border: 1px solid #d1d5db;    outline: none;    transition: border 0.3s;}.form-group input:focus,.form-group textarea:focus {    border-color: #f04f0b;}.form-group textarea {    resize: vertical;    min-height: 100px;}.form-button {    display: flex;    justify-content: flex-start;}.form-button button {    background-color: #152d77;    color: #fff;    padding: 12px 24px;    border: none;    border-radius: 6px;    cursor: pointer;    font-size: 16px;    font-weight: 500;    transition: background 0.3s;}.form-button button:hover {    background-color: #f04f0b;}@media (max-width: 640px) {    .form-container {        margin: 40px 20px;        padding: 30px 50px;    }    .form-button {        justify-content: center;    }}