.cta-section {
    position: relative;
    width: 100%;
    height: 450px;
    /* Yüksekliği arttırarak alanı daha geniş yapıyoruz */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

.cta-content h2 {
    font-size: 36px;
    /* Font boyutunu biraz küçültüyoruz */
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    /* Buton boyutunu küçültüyoruz */
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    transform: translateY(-5px) scale(1.05);

}

.section {
    margin-bottom: -10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-box i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
    color: #fdbb2d;
}

.stat-box h3 {
    font-size: 2rem;
    font-weight: bold;
}

.stat-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.service-image {
    max-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.service-image:hover {
    transform: rotateY(10deg) scale(1.05);
}

.service-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.service-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-box i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    color: #fdbb2d;
    transition: transform 0.3s ease;
}

.service-box:hover i {
    transform: scale(1.2);
}

.service-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-box p {
    font-size: 1rem;
    opacity: 0.9;
}
