section.hero-standard.udt-hero {
    background: #000;
}

.udt-button-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #00b1cf;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 177, 207, 0.3);
    border: 2px solid #00b1cf;
}

.udt-button-primary:hover {
    background: transparent;
    color: #00b1cf;
    transform: translateY(-5px);
}

/* Info Section */
.udt-info {
    padding: 100px 0;
    background: #fff;
}

.udt-info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.udt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.udt-content h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.udt-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.udt-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.udt-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #374151;
}

.udt-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b1cf;
    font-weight: 900;
    font-size: 1.2rem;
}

/* Steps Section */
.udt-steps {
    padding: 100px 0;
    background: #f8fafc;
}

.udt-steps__title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #00b1cf;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #1e3a5f;
}

.step-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}


/* Highlight Box */
.udt-highlight-box {
    background: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 40px auto;
    border: 1px solid rgba(0, 177, 207, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.udt-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #00b1cf;
}

.udt-highlight-box h2 {
    font-size: 2.2rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.udt-highlight-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2.5rem;
}

/* Mobile */
@media (max-width: 1024px) {
    .udt-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .udt-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .udt-hero__container {
        padding: 0 1rem;
    }

    .udt-hero__title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .udt-hero__subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .udt-hero__description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .udt-button-primary {
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .udt-info {
        padding: 60px 0;
    }

    .udt-content h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .udt-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .udt-grid {
        gap: 2.5rem;
    }

    .udt-steps {
        padding: 60px 0;
    }

    .udt-steps__title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .udt-highlight-box {
        padding: 40px 20px;
        margin: 20px 10px;
    }

    .udt-highlight-box h2 {
        font-size: 1.6rem;
    }

    .udt-highlight-box p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
}