body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    background: url('images/clab_back.png') center/cover no-repeat;
}

.hero {
    position: relative;
    height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.logo {
    position: relative;
    z-index: 3;
    width: 260px;
    margin: 20px 0 0 0;
}

.slogan {
    font-size: 1.4rem;
    position: relative;
    z-index: 3;
	margin: 10px 0;
}

main {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

section {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

h2 {
    color: #0078d7;
    margin-bottom: 15px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #0078d7;
    color: white;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.contact-panel {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 50px auto;
    max-width: 900px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-width: 260px;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #0078d7;
}

.phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 4px;
    color: #333;
    text-decoration: none;
}

.phone:hover {
    color: #0078d7;
}

.address {
    font-size: 1rem;
    margin: 4px 0 0;
    color: #333;
    line-height: 1.4rem;
}

.divider {
    width: 2px;
    height: 80px;
    background: #e1e1e1;
}

@media(max-width: 700px) {
    .contact-panel {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .divider {
        display: none;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }
}




.about h2 {
    margin-bottom: 25px;
}

.about-wrap {
    display: flex;
    align-items: center; /* tam dikey hizalama */
    gap: 30px;
}

.about-img {
    width: 45%;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    object-fit: cover; /* taşmayı önler */
}

.about-text {
    width: 55%;
}

@media(max-width: 850px) {
    .about-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-img,
    .about-text {
        width: 100%;
    }
}





.partners-img {
    width: 100%;
    margin-top: 25px;
    border-radius: 12px;
}

