.elementor-942 .elementor-element.elementor-element-63eca3b{--display:flex;}.elementor-942 .elementor-element.elementor-element-b783dd3{color:#646464;}/* Start custom CSS *//* Modern Datenschutzerklärung Başlık Tasarımı */

h1, .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Animasyonlu alt çizgi */
h1::after, .page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: expandLine 2s ease-out forwards;
}

@keyframes expandLine {
    to {
        width: 200px;
    }
}

/* Hover efekti */
h1:hover, .page-title:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Glow efekti */
h1:hover::before, .page-title:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

/* Mobil uyumlu */
@media (max-width: 768px) {
    h1, .page-title {
        font-size: 2.5rem;
        margin: 1.5rem 0;
    }
    
    h1::after, .page-title::after {
        width: 150px;
    }
}

@media (max-width: 480px) {
    h1, .page-title {
        font-size: 2rem;
        margin: 1rem 0;
    }
    
    h1::after, .page-title::after {
        width: 120px;
    }
}

/* Alternatif tasarım - Glassmorphism */
.glass-title {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: fit-content;
}

/* Animasyonlu renkler */
.animated-title {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}/* End custom CSS */