body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fc;
    color: #333;
}
.hero {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Karartma efekti */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}
.typed-text {
    font-size: 2rem;
    font-weight: bold;
    color: #00c6ff;
}
.section {
    padding: 60px 20px;
}
.btn-primary {
    background: linear-gradient(to right, #007aff, #00c6ff);
    border: none;
    transition: 0.3s ease-in-out;
}
.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 122, 255, 0.5);
}
.btn-success {
    background: linear-gradient(to right, #00b894, #00cec9);
    border: none;
}
.btn-success:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 200, 150, 0.5);
}
.feature-icon {
    font-size: 40px;
    color: #007aff;
}
.footer {
    background-color: #222;
    color: #ccc;
    padding: 40px 0;
}
.fade-in {
    animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
