.title-1 {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(232, 129, 127, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(232, 129, 127, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.title-1:hover {
    background: rgba(232, 129, 127, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.text-content {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 1rem;
    color: white;
}

.text-content.centered {
    text-align: center;
}

.title-1.no-glass {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.title-1.no-glass:hover {
    background: none;
    box-shadow: none;
    transform: none;
}

.section-title {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

