.hero-title {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

footer {

    text-align: center;
}

.content-block {

    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-block h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--contact-blue);
    padding-left: 1rem;
}

.content-block p {
    margin-bottom: 1.5rem;
}

.content-block strong {
    color: var(--text-primary);
    font-weight: 600;
}


.team-container {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 2rem;
}

.team-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.team-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    color: var(--contact-blue);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 100px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 4rem;
}

.team-placeholder {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.team-placeholder:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.circle-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .team-info h3 {
        font-size: 2rem;
    }

    .content-block h3 {
        border-left: none;
        border-bottom: 2px solid var(--contact-blue);
        padding-left: 0;
        padding-bottom: 0.5rem;
        display: inline-block;
    }

    .section-abtus3-extended {
       margin-bottom: 7.0%;
    }
}

@media (min-width: 768px) {

    footer{
        position: relative;
        top: 25px;
    }

    .section-abtus3-extended{
        position: relative;
        top: 0px;
    }
}