@media (max-width: 991px) {
    .mobile-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .desktop-break {
        display: block;
    }
}

.thankyou-hero {
    padding: 40px 0 60px 0;
    background: #f8f8f7;
}

.thankyou-hero-image {
    width: 320px;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto 40px auto;
}

.thankyou-title {
    font-size: 3rem;
    font-weight: 700;
    color: #313131;
    margin-top: 30px;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.thankyou-subtitle {
    font-size: 1.25rem;
    color: #606266;
    margin-bottom: 2rem;
    line-height: 1.8;
}


.thankyou-resources {
    padding: 30px 0 60px 0;
    margin-top: -50px;
}

.resource-card {
    background: #ffffff;
    border: 1px solid #e4e7ed;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 30px;
    min-height: 280px;
    transition: all 0.3s ease;
    position: relative;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #1e96eb;
}

.resource-card-icon {
    width: 48px;
    height: 48px;
    background: #1e96eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.resource-card-icon i {
    color: #ffffff;
    font-size: 24px;
}

.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #313131;
    margin-bottom: 12px;
}

.resource-card p {
    font-size: 0.9375rem;
    color: #909399;
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-card a.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.resource-card a.card-link:hover {
    text-decoration: none;
}

.resource-card a.card-link h3 {
    color: #313131;
}

.resource-card a.card-link p {
    color: #909399;
}

.resource-card a.card-link span {
    color: #1e96eb;
    font-weight: 500;
}

.resource-card a {
    color: #1e96eb;
    text-decoration: none;
    font-weight: 500;
}

.resource-card a:hover {
    color: #1e96eb;
    text-decoration: underline;
}