* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-bar {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h2 {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo span {
    color: #fff;
}

.features-list {
    list-style-type: none;
    padding: 0;
}

.features-list li {
    margin: 8px 0;
    font-size: 1.1em;
    color: #fff;
}

/* Varsayılan stil */
.nav-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
}

/* Mobil görünüm için */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap; /* Butonlar alt alta geçmesin */
        width: 100%;
        align-items: center; /* Butonları dikeyde ortalar */
    }

    .nav-links a {
        margin: 0; /* Butonlar arasındaki boşluğu ortadan kaldırır */
    }

    .login-btn {
        width: auto; /* Buton genişliğini sabit tutar */
        text-align: center;
    }
}

.nav-links a {
    position: relative;
    z-index: 10;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.nav-links .login-btn {
    background-color: #007bff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    display: flex;
    align-items: center;
}

.nav-links .login-btn:hover {
    background-color: #0056b3;
}

.hero {
    background: linear-gradient(135deg, #8e44ad, #c0392b, #f39c12);
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 15px 15px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
    z-index: 0;
}

.hero h1, .hero p, .btn-primary, .terms, .social-share {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 10px;
}

.btn-primary {
    display: inline-block;
    background-color: #8e44ad; /* Mor renk */
    color: #fff;
    font-size: 24px;  /* Daha büyük font boyutu */
    font-weight: bold;
    padding: 15px 30px; /* Daha fazla iç boşluk */
    border-radius: 50px; /* Yuvarlatılmış köşeler */
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-primary:hover {
    background-color: #9b59b6; /* Daha açık mor hover rengi */
    transform: scale(1.1); /* Hover üzerinde büyütme efekti */
}

.terms {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px;
}

.social-share {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 20px;
}

.social-share button {
    background-color: #fff;
    color: #007bff;
    border: 1px solid #007bff;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    font-weight: bold;
}

.social-share button:hover {
    background-color: #007bff;
    color: #fff;
}

/* Hizmetler Kartları */
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 60px 20px;
    background-color: #fff;
}

.feature-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    width: 30%;
    margin: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 3rem;
    color: #8e44ad;
    margin-bottom: 10px; /* Boşluğu küçülttük */
}

.feature-card h2 {
    color: #8e44ad;
    margin-bottom: 10px;
}

.feature-card p {
    color: #555;
}

/* Hizmet kartlarının ikon ve metin hizasını düzelttik */
.feature-card i, .feature-card h2, .feature-card p {
    display: inline-block; /* Her biri yan yana gelsin */
    vertical-align: middle; /* Dikeyde ortalayalım */
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .feature-card {
        width: 100%;
    }
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}

.footer-container {
    display: flex;
    justify-content: center;
}

.footer nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    font-weight: bold;
}

.footer nav a:hover {
    color: #ffd700;
}

/* Sosyal Medya İkonları */
.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    font-size: 2rem;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ffd700;
}

/* Kullanıcı Yorumları */
.testimonials {
    padding: 50px 20px;
    background-color: #f7f7f9;
    text-align: center;
}

.testimonial {
    margin: 20px 0;
    font-style: italic;
}

.testimonial h3 {
    font-weight: bold;
    color: #8e44ad;
}

/* Sıkça Sorulan Sorular */
.faq {
    padding: 50px 20px;
    background-color: #fff;
    color: #333;
}

.faq h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #8e44ad;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
}

/* Hizmetler için İkonlar ve Açıklamalar */
.services {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #f7f7f9;
}

.service-card {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.service-card i {
    font-size: 3rem;
    color: #8e44ad;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #8e44ad;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
}


/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .top-bar {
        flex-direction: column;
        padding: 10px;
    }

    .nav-links {
        flex-direction: row; /* Butonlar yan yana */
        justify-content: center;
        gap: 10px;
        width: 100%;
        align-items: center;
    }

    .hero {
        padding: 60px 20px;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    .social-share {
        flex-direction: column;
        gap: 10px;
    }

    .features-container {
        gap: 15px;
    }

    .feature-card {
        padding: 15px;
    }

    .footer nav {
        flex-direction: column;
        gap: 10px;
    }
}
