/* Genel Stil */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ececec; /* Daha kirli beyaz arka plan */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden; /* Sayfanın sağa sola kaymasını engeller */
    width: 100%;
    box-sizing: border-box; /* Tüm öğelerin genişliklerini doğru hesapla */
}

/* Meta Tag - Sayfa için mobil uyumlu viewport ayarları */
@viewport {
    width: device-width;
    initial-scale: 1.0;
}

/* Üst Kısım */
.header {
    background-color: #002b5c; /* Koyu mavi */
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

/* Logo */
.header img {
    max-height: 60px;
    width: auto;
    margin: 0 auto;
}

/* Tek Resim Container */
.image-container {
    margin-top: 8px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    border: 5px solid #0073e6; /* Mavi kenarlık */
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    background-color: #eaeaea; /* Daha koyu kirli beyaz */
    padding-bottom: 0px;
    box-sizing: border-box;
}

/* Tek Resim */
.highlight-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px 10px 0 0;
}

/* Giriş Yap Butonu */
.login-button {
    background-color: #0073e6; /* Mavi */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 100px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    margin: 15px auto 20px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.login-button:hover {
    background-color: #005bb5; /* Daha koyu mavi */
}

/* Ticker */
.ticker-wrapper {
    background-color: #002b5c; /* Koyu mavi */
    padding: 10px 0;
    border: 5px solid #0073e6;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px auto;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.ticker {
    display: flex;
    gap: 0px;
    animation: ticker-scroll 10s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    gap: 10px;
    white-space: nowrap;
}

.ticker-item img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

.highlighted {
    color: #0073e6; /* Mavi */
    font-weight: bold;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Hizmetlerimiz Bölümü */
.services-section {
    margin: 8px auto;
    padding: 20px;
    background-color: #eaeaea; /* Daha koyu kirli beyaz */
    border: 5px solid #0073e6; /* Mavi kenarlık */
    border-radius: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.services-section h2 {
    font-size: 32px;
    color: #002b5c; /* Koyu mavi */
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

/* Hizmet Kartları */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
}

.service-card {
    background-color: #f2f2f2; /* Kirli beyaz daha koyu ton */
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
    width: 100%;
    border-radius: 10px;
    filter: brightness(95%); /* Görsellerin beyazlığını azalt */
}

.service-card h3 {
    color: #002b5c; /* Koyu mavi */
    font-size: 18px;
    margin: 15px 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Popüler Yatırım Yöntemleri */
.investment-section {
    margin: 8px auto;
    padding: 20px;
    background-color: #eaeaea; /* Daha koyu kirli beyaz */
    border: 5px solid #0073e6;
    border-radius: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.investment-section h2 {
    font-size: 32px;
    color: #002b5c; /* Koyu mavi */
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
}

.investment-card {
    background-color: #f2f2f2; /* Daha koyu kirli beyaz */
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-card img {
    width: 100%;
    border-radius: 10px;
    filter: brightness(95%); /* Görsellerin beyazlığını azalt */
}

.investment-card h3 {
    color: #002b5c; /* Koyu mavi */
    font-size: 18px;
    margin: 15px 0;
}

.investment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Makale Stilleri */
.article-section {
    margin: 8px auto;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    background-color: #eaeaea; /* Daha koyu kirli beyaz */
    border: 1px solid #0073e6;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.article h2 {
    font-size: 24px;
    color: #002b5c; /* Koyu mavi */
    margin-bottom: 15px;
}

.article p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #002b5c;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 8px;
    width: 100%;
    box-sizing: border-box;
}

.footer a {
    color: #0073e6;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Mobil için düzenlemeler */
@media (max-width: 768px) {
    .services-grid,
    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card,
    .investment-card {
        padding: 15px;
    }
}