/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #300066; /* Koyu, teknolojik bir arka plan */
    color: #e0e0e0;
    line-height: 1.6;
}

container 
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Vitrin (Hero) Alanı */
.hero {
    text-align: center;
    padding: 100px 0;
    border-bottom: 1px solid #1f2233;
}

.logo {
    font-size: 3rem;
    font-weight: 800;
    color: #00ffcc; /* Neon Cyan vurgu */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #a0aabf;
}

/* Butonlar */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00ffcc;
    color: #0d0e15;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #ffffff;
    box-shadow: 0 0 15px #00ffcc;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid #00ffcc;
    color: #00ffcc;
}

.secondary-btn:hover {
    background-color: #00ffcc;
    color: #0d0e15;
}

/* Hizmet Kartları */
.services {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 80px 0;
}

.service-card {
    background-color: #151823;
    padding: 40px;
    border-radius: 10px;
    flex: 1;
    border-top: 3px solid #00ffcc;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: #a0aabf;
}

/* İletişim Alanı */
.contact {
    text-align: center;
    padding: 80px 0;
    background-color: #0f111a;
    border-radius: 10px;
    margin-bottom: 50px;
}

.contact h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.contact p {
    margin-bottom: 30px;
    color: #a0aabf;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .services {
        flex-direction: column;
    }
}