.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background: #fafaf8;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #4a7c59;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-info {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 3rem;
    border-left: 4px solid #4a7c59;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.selected-service {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.selected-price {
    font-size: 1.5rem;
    color: #4a7c59;
    font-weight: 600;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

.steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #4a7c59;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #4a7c59;
    color: #fff;
}

.btn-primary:hover {
    background: #3d6849;
}

.btn-secondary {
    background: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
}

.btn-secondary:hover {
    background: #2c2c2c;
    color: #fff;
}

@media (max-width: 968px) {
    .thanks-content h1 {
        font-size: 2rem;
    }

    .steps {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}