.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background: #f0ede8;
}

.thanks-content {
    max-width: 700px;
    background: #ffffff;
    padding: 60px 50px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 40px;
}

.booking-summary {
    background: #f8f6f3;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.booking-summary h2 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 500;
}

.booking-summary p {
    font-size: 16px;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f6f3;
}

.next-steps h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 500;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #4a4a4a;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-home,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.8px;
    transition: background 0.3s;
    display: inline-block;
}

.btn-home {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-home:hover {
    background: #333333;
}

.btn-secondary {
    background: #e0e0e0;
    color: #2a2a2a;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

@media (max-width: 768px) {
    .thanks-container {
        padding: 60px 20px;
    }

    .thanks-content {
        padding: 40px 30px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

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

    .btn-home,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
