* {
    box-sizing: border-box;
}

.content {
    min-height: calc(100vh - 200px);
    padding: 80px 20px 40px;
    background: var(--background-color, #f0f4f2);
}

.wrapper-1 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wrapper-2 {
    padding: 60px 40px;
    text-align: center;
    background: var(--surface-color, #ffffff);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 77, 58, 0.1);
    width: 100%;
}

.success-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.success-icon i {
    font-size: 80px;
    color: var(--dark-green, #1a4d3a);
    position: relative;
    z-index: 2;
    animation: scaleIn 0.5s ease-out;
}

.success-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.1) 0%, rgba(74, 44, 90, 0.1) 100%);
    animation: pulse 2s infinite;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}

.wrapper-2 h1 {
    font-family: 'Anybody', sans-serif;
    font-size: 3em;
    letter-spacing: 2px;
    color: var(--heading-color, #1a4d3a);
    margin: 0 0 20px 0;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2em;
    color: var(--default-color, #2c2c2c);
    font-family: 'Anybody', sans-serif;
    line-height: 1.6;
    margin-bottom: 30px;
}

.next-steps {
    text-align: left;
    background: rgba(26, 77, 58, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.next-steps h3 {
    font-family: 'Anybody', sans-serif;
    color: var(--heading-color, #1a4d3a);
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

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

.next-steps li {
    padding: 15px 0;
    color: var(--default-color, #2c2c2c);
    font-family: 'Anybody', sans-serif;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(26, 77, 58, 0.1);
}

.next-steps li:last-child {
    border-bottom: none;
}

.next-steps li i {
    color: var(--dark-green, #1a4d3a);
    margin-right: 15px;
    font-size: 1.2em;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-thanks {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a4d3a 0%, #4a2c5a 100%);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Anybody', sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-thanks:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 77, 58, 0.3);
    color: #ffffff;
}

.btn-thanks-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--dark-purple, #4a2c5a);
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Anybody', sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid var(--dark-purple, #4a2c5a);
}

.btn-thanks-secondary:hover {
    background: var(--dark-purple, #4a2c5a);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 44, 90, 0.3);
}

@media (max-width: 768px) {
    .wrapper-2 {
        padding: 40px 20px;
    }

    .wrapper-2 h1 {
        font-size: 2.2em;
    }

    .thanks-message {
        font-size: 1em;
    }

    .next-steps {
        padding: 20px;
    }

    .next-steps li {
        font-size: 1em;
    }

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

    .btn-thanks,
    .btn-thanks-secondary {
        width: 100%;
        justify-content: center;
    }

    .success-icon {
        width: 100px;
        height: 100px;
    }

    .success-icon i {
        font-size: 60px;
    }

    .success-circle {
        width: 100px;
        height: 100px;
    }
}
