.delegato_hero {
    padding: 150px 0 80px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.delegato_title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.delegato_content {
    background-color: var(--light-gray);
    padding-top: 60px;
    padding-bottom: 60px;
}

.delegato_description {
    background-color: var(--white);
    border-radius: 10px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.delegato_description p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto 20px;
}

.delegato_description p:last-child {
    margin-bottom: 0;
}

.delegato_highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.delegato_download-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.delegato_download-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.delegato_download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.delegato_download-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.delegato_download-btn i {
    font-size: 1.5rem;
}

.delegato_instructions {
    text-align: center;
    max-width: 700px;
}

.delegato_instructions p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.6;
}

.delegato_email {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .delegato_description {
        padding: 40px;
    }

    .delegato_description p {
        font-size: 1.2rem;
    }

    .delegato_download-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .delegato_hero {
        padding: 130px 0 60px;
    }

    .delegato_title {
        font-size: 2.5rem;
    }

    .delegato_description {
        padding: 30px;
    }

    .delegato_description p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .delegato_download-btn {
        font-size: 1.1rem;
        padding: 14px 28px;
    }

    .delegato_instructions p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .delegato_hero {
        padding: 120px 0 50px;
    }

    .delegato_title {
        font-size: 2rem;
    }

    .delegato_description {
        padding: 25px;
    }

    .delegato_description p {
        font-size: 1rem;
    }

    .delegato_download-container {
        padding: 30px 20px;
    }

    .delegato_download-btn {
        font-size: 1rem;
        padding: 12px 24px;
        width: 100%;
        max-width: 300px;
    }

    .delegato_instructions p {
        font-size: 1rem;
    }
}