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

body {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.container {
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: hidden;
}

.policy-section {
    max-width: 100%;
    width: 100%;
    margin: 0;
    text-align: left;
    padding-bottom: 4rem;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #000;
    margin: 0;
    position: relative;
    padding-left: 2rem;
}

.policy-content {
    max-width: 800px;
    margin-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.last-updated {
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

section ul {
    list-style-type: none;
    margin-left: 1rem;
    margin-bottom: 1.5rem;
}

section ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

.contact-info {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #666;
}

/* Hamburger menu stilleri */
#burger-container {
    position: absolute;
    top: 2rem;
    right: 2rem;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    transition: opacity .25s ease;
}

/* Menu overlay stilleri */
.menu-overlay {
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
    z-index: 90;
}

/* Diğer hamburger ve menu stilleri aboutusstyle.css'den kopyalanacak */

/* Mobil için düzenleme */
@media screen and (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .main-title {
        font-size: 3rem;
        padding-left: 1rem;
    }

    .policy-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    section p, section ul li {
        font-size: 1rem;
        line-height: 1.6;
    }

    #burger-container {
        top: 2rem;
        right: 1rem;
    }
}
