:root {
    --primary-color: #1e3a5f;
    --secondary-color: #669bbc;
    --accent-color: #ffe66d;
    --dark-color: #292f36;
    --light-color: #f7fff7;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
    --gray-light: #f5f5f5;
    --transition: all 0.3s ease;
    --bg1-color: #1e3a5f;
    --bg2-color: #669bbc;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-title: 'Comic Sans MS', cursive, sans-serif;
}

.hakkımızda {
    background-color: #f4f4f4;
    padding: 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;


}

.container-hakkımızda img {
    height: 600px;
    max-width: 600px;
    border-radius: 5%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

    margin-left: 50px;
}

.hakkımızda h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-family: var(--font-title);
}

.container-hakkımızda {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.container-hakkımızda p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
    font-family: var(--font-title);
    color: var(--text-color);
   min-width: 602px;
    height: 600px;
    
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 20px;
        justify-content: center;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero {
        height: 400px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 30px;
        padding: 15px;
    }
    .container-hakkımızda {
        flex-direction: column-reverse;
        align-items: center;
      
    }
    .container-hakkımızda p{
        min-width: 90%;
        height: auto;
    }
    .container-hakkımızda img {
        height: 300px;
        max-width: 300px;
        margin-left: 0;
    }
}