* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container, .contanier {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #FFFCE7;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.header .contanier {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.img {
    display: flex;
    align-items: center;
}
.img a img {
    border: none;
}

.img img {
    height: 60px;
    width: auto;
}

.başlık {
    margin-left: 15px;
}

.başlık p {
    font-size: 16px;
    font-weight: 600;
    color: #2d5016;
    margin: 0;
}

.link {
    display: flex;
    gap: 40px;
}

.link a {
    text-decoration: none;
    color: #2d5016;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
       transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.link a:hover {
    color: #A3B18A;
}
.link a.active {
    color: #000;
    font-weight: 600;
}
.link a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color:black;
    border-radius: 1px;
}

/* Main Content */
.main {
    background:white;
    padding: 80px 0;
    flex: 1;
}

.main .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.text {
    flex: 1;
    max-width: 600px;
}

.text h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2E2E2E;
    margin-bottom: 30px;
    line-height: 1.1;
    animation: slideInFromRight 1s ease-out forwards;
}
@keyframes slideInFromRight {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.text p {
    font-size: 20px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.text p:last-of-type {
    font-size: 18px;
    margin-top: 10px;
}

.app_button {
    margin: 20px 0;
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}

.app_button a {
    display: block;
    transition: transform 0.3s ease;
}

.app_button img {
    height: 60px;
    width: auto;
}

.app_button a:hover {
    transform: scale(1.05);
}

.phone_look {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone_look img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


/* Footer Styles */
.footer {
    background-color: #E8E8E8;
    color: #2E2E2E;
    padding: 40px 0;
    margin-top: auto;
}

.footer_connect {
    display: flex;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px;
}

.footer_connect a {
    color: #2E2E2E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_connect a:hover {
    color: #A3B18A;
}

.footer_connect p {
    font-size: 15px;
    margin: 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container, .contanier {
        padding: 0 15px;
    }

    .header {
        padding: 20px 0;
    }
    .header .contanier {
        display: flex;
        flex-wrap: wrap; 
        justify-content: space-between; 
        align-items: center;
        row-gap: 15px; 
    }

    .img {
        justify-content: flex-start;
    }

    .img img {
        height: 50px;
    }
     .başlık {
        width: 100%;     
        order: 3;         
        text-align: center; 
        margin-left: 0;   
    }

    .başlık p {
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
    }

    .link {
        
        justify-content: flex-end;
    }

    .link a:first-child {
        display: none;
    }

    .main {
        padding: 40px 0;
    }

    .main .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .text {
        max-width: 100%;
    }

    .text h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .text p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .text p:last-of-type {
        font-size: 16px;
        margin-top: 15px;
    }

    .app_button {
        justify-content: center;
        margin: 30px 0;
        gap: 15px;
    }

    .app_button img {
        height: 50px;
    }

    .phone_look {
        margin-top: 0;
    }

    .phone_look img {
        max-width: 90%;
        max-height: 400px;
    }

    .footer_connect {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .text h1 {
        font-size: 28px;
    }

    .text p {
        font-size: 16px;
    }

    .text p:last-of-type {
        font-size: 14px;
    }

    .app_button img {
        height: 45px;
    }

    .img img {
        height: 40px;
    }

    .başlık p {
        font-size: 12px;
    }
}

/* Privacy Policy direction */

.main .policy-container {
    background-color: white;
    padding: 40px 50px; /* Kartın sağ ve sol kenar boşlukları kalmalı */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 20px auto;
    flex-direction: column;
    align-items: flex-start;
}

/* Tüm elemanların dikey boşluklarını topluca sıfırla */
.main .policy-container h1,
.main .policy-container h2,
.main .policy-container p,
.main .policy-container ul,
.main .policy-container li {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Elemanların kendi özel stilleri */
/* --- Gizlilik Politikası Stilleri (GAP DAHİL SIFIR DİKEY BOŞLUK) --- */

.main .policy-container {
    background-color: white;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 20px auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0; /* ELEMAN ARASI BOŞLUĞU SIFIRLAYAN KESİN ÇÖZÜM */
}

/* Tüm elemanların dikey boşluklarını topluca sıfırla */
.main .policy-container h1,
.main .policy-container h2,
.main .policy-container p,
.main .policy-container ul,
.main .policy-container li {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Elemanların kendi özel stilleri */
.main .policy-container h1 {
    text-align: center;
    width: 100%;
    font-size: 36px;
    color: #2E2E2E;
}

.main .policy-container h2 {
    font-size: 22px;
    color: #333;
    width: 100%;
}

.main .policy-container p,
.main .policy-container li {
    line-height: 1.2;
    color: #555;
    text-align: left;
}

.main .policy-container ul {
    padding-left: 25px;
    width: 100%;
}

/* Mobil Cihazlar İçin Ayarlar */
@media (max-width: 768px) {
    .main .policy-container {
        padding: 30px 25px;
    }
    .main .policy-container h1 {
        font-size: 28px;
    }
    .main .policy-container h2 {
        font-size: 20px;
    }
}