* {
    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;
}

.about-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;
}

.map-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
    background-image: url('images/aboutus.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
}

.about-content {
    max-width: 100%;
    margin-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #333;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin: 2.5rem 0 1.5rem;
    padding-left: 2rem;
}

.closing-text {
    font-style: italic;
    margin-top: 3rem;
    font-size: 1.2rem;
}

/* Mobil için düzenleme */
@media screen and (max-width: 768px) {
    body {
        overflow-y: auto;
    }

    .container {
        padding: 1rem;
        width: 100%;
    }

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

    /* Spesifikliği artırdık */
    body .map-background {
        background-image: url('images/mobileboutus.jpg') !important;
        background-size: cover;
    }

    .about-content {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-top: 2rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .section-title {
        font-size: 1.8rem;
        padding-left: 1rem;
        padding-right: 1rem;
        margin: 2rem 0 1rem;
        word-wrap: break-word;
    }

    .team-profile {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

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

#burger {
    position: absolute;
    height: 100%;
    width: 100%;
}

#burger span {
    background: #000;
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}

#burger span:nth-of-type(2) {
    top: 8px;
}

#burger span:nth-of-type(3) {
    top: 16px;
}

#burger span:nth-of-type(4) {
    top: 24px;
}

#burger-container.open #burger span:nth-of-type(1) {
    transform: translateY(8px) translateX(0) rotate(45deg);
    background: #FFF;
}

#burger-container.open #burger span:nth-of-type(2) {
    opacity: 0;
}

#burger-container.open #burger span:nth-of-type(3) {
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    background: #FFF;
}

#burger-container.open #burger span:nth-of-type(4) {
    opacity: 0;
}

/* 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;
}

.menu-overlay.active {
    opacity: .9;
    visibility: visible;
    height: 100%;
}

.main-menu {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.main-menu ul li {
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
}

.main-menu ul li a {
    color: #FFF;
    text-decoration: none;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
}

/* Mobil için hamburger pozisyonu */
@media screen and (max-width: 768px) {
    #burger-container {
        position: absolute;
        top: 2rem;
        right: 1rem;
    }
}

.team-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding-left: 2rem;
    border-top: 1px solid #eee;
    padding-top: 3rem;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.profile-title {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

/* Mobil için düzenleme */
@media screen and (max-width: 768px) {
    .team-profile {
        flex-direction: column;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        gap: 1rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
        object-position: center 30%;
    }
}
