.complete-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 auto 40px auto;
}

.complete-card {
    width: 100%;
    max-width: 720px;
    background-color: var(--white-color);
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.complete-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto;
    background-image: url("../images/contact_comp.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.complete-title {
    color: var(--text-color);
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
}

.complete-subtitle {
    color: var(--text-color);
    font-size: 2.0rem;
    font-weight: 600;
    margin: 0;
}

.complete-desc {
    color: var(--text-color);
    font-size: 1.6rem;
    line-height: 1.8;
    max-width: 56rem;
    margin: 0 auto;
    opacity: 0.95;
}

.complete-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 1.4rem 4.0rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.6rem;
    box-shadow: 0 6px 18px rgba(254, 113, 67, 0.18);
    transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

.complete-btn:hover,
.complete-btn:focus {
    transform: translateY(-2px);
    opacity: 0.95;
    outline: none;
}

@media (max-width: 768px) {
    .complete-page {
        width: 90%;
    }

    .complete-title {
        font-size: 2.2rem;
    }

    .complete-subtitle {
        font-size: 1.8rem;
    }

    .complete-desc {
        font-size: 1.4rem;
        margin: 0 auto;
    }

    .complete-icon {
        width: 76px;
        height: 76px;
        margin: 0 auto;
    }
}