/* Hakkimizda Sayfası Genel Stilleri */
.about-us-container {
    max-width: 1200px; /* Alanı genişleterek kartlara daha fazla yer açıyoruz */
    margin: 0 auto;
    padding: 2rem;
    color: #333;
    padding-top: 100px; /* Header'ın kapladığı alan için boşluk */
}

/* Hero Alanı */
.hero-about {
    text-align: center;
    padding: 2rem 1rem 4rem 1rem; /* Üst boşluğu azalttım, alt boşluğu korudum */
    margin-bottom: 0rem;
    padding-top: 1.5rem; /* Üst boşluğu içeriye veriyoruz */
    max-width: 1000px; /* Kutunun maksimum genişliğini sınırlıyoruz */
    margin-left: auto; /* Yatayda ortalamak için */
    margin-right: auto; /* Yatayda ortalamak için */
}

.hero-about h1 {
    font-size: 2.4rem; /* Tekrar küçülttük */
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem; /* Altındaki boşluğu azalttık */
}

.hero-about .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 1.5rem;
}

.hero-about p:not(.subtitle) {
    font-size: 1.1rem; /* Paragrafı biraz daha standart boyuta çektik */
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

/* Misyon ve Vizyon Kartları */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 0rem;
    margin-top: 8rem; /* Üstteki boşluğu azalttık */
}

.mission-vision .card {
    background: #ffffff;
    padding: 1.5rem 2.5rem; /* Dikey boşluk azaldı, yatay boşluk arttı */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mission-vision h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center; /* Başlığı kart içinde yatayda ortalamak için */
    gap: 0.5rem;
}

/* Nasıl Çalışırız Bölümü */
.how-we-work {
    text-align: center;
    margin: 3rem 0; /* Set symmetrical vertical margins */
}

.how-we-work h2, .what-we-offer h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.team-carousel-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: #555;
    line-height: 1.6;
}

.steps-viewport {
    overflow: hidden; /* Dışarı taşan içeriği gizle */
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.steps-viewport:hover .steps-container {
    animation-play-state: paused; /* Fare üzerine gelince animasyonu durdur */
}

.steps-container {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    will-change: transform;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Toplam genişliğin yarısı kadar kaydır */
    }
}


.step-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
    flex-shrink: 0; /* Kartların küçülmesini engelliyoruz */
    width: 220px; /* Sabit genişlik veriyoruz */
    display: flex; /* Kart içeriğini daha iyi yönetmek için */
    flex-direction: column; /* İçeriği dikey olarak sırala */
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-arrow {
    align-self: center; /* Kapsayıcının esnetme özelliğinden etkilenme, dikeyde ortada kal */
}

.step-arrow svg {
    stroke: #4b0082; /* SVG ikonunun rengini değiştiriyoruz */
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}


/* Ne Sunarız Bölümü */
.what-we-offer {
    margin-bottom: 2rem;
}

.what-we-offer h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.offer-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: #555;
    line-height: 1.6;
}

.offer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.offer-grid a.offer-card {
    color: inherit;
    text-decoration: none;
    flex: 0 1 250px; /* Control size: don't grow, shrink, basis of 250px */
}

.offer-card {
    background: #fff;
    padding: 1.5rem; /* Reduced padding */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.offer-card h3 {
    font-size: 1.15rem; /* Reduced font size */
    margin-bottom: 0.75rem;
}

.offer-card p {
    font-size: 0.95rem; /* Set paragraph font size */
    line-height: 1.5;
}

.final-summary {
    background-color: #f4f7f6;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.final-summary h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.final-summary ul {
    list-style-type: '✓ ';
    padding-left: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.final-summary ul li {
    font-size: 1.1rem;
    line-height: 1.5;
}


/* Mobil Cihazlar için Ayarlamalar */
@media (max-width: 1200px) {
    .steps-viewport {
        -webkit-mask-image: none; /* Maskeyi kaldır */
        mask-image: none;
        overflow-x: auto; /* Animasyon yerine normal kaydırma */
    }

    .steps-container {
       animation: none; /* Animasyonu iptal et */
       justify-content: flex-start; /* Kartları sola hizala */
    }

    .step-arrow {
        display: none; /* Tablet ve altı için okları gizle */
    }
}


@media (max-width: 768px) {
    .mission-vision, .offer-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }

    .hero-about h1 {
        font-size: 2.5rem;
    }

    .final-summary ul {
        grid-template-columns: 1fr;
    }
} 

.arch-logo-image-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arch-logo-image-container img {
    max-width: 85%;
    height: auto;
} 