/* Styles for the Thank You page */
.thank-you-container {
    background-color: white;
    padding: 40px;
    margin: 40px auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thank-you-message h1 {
    font-family: Arial, sans-serif;
    color: #003333;
    margin-bottom: 20px;
}

.thank-you-message .icon {
    font-size: 4em;
    color: #66CC33;
    margin: 20px 0;
}

.thank-you-message p {
    font-family: Arial, sans-serif;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.next-steps {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.next-steps h2 {
    color: #003333;
    margin-top: 0;
    font-size: 1.3em;
}

.next-steps ul {
    list-style-type: none;
    padding: 0;
}

.next-steps li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.next-steps li:before {
    content: "•";
    color: #66CC33;
    font-weight: bold;
    position: absolute;
    left: 10px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.btn-primary {
    background-color: #66CC33;
    color: white;
    font-family: 'Bangers', cursive;
    font-size: 1.2em;
}

.btn-primary:hover {
    background-color: #559922;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #003333;
    color: white;
    font-family: Arial, sans-serif;
}

.btn-secondary:hover {
    background-color: #002222;
    transform: translateY(-2px);
}