* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(to bottom, #f7faf7 0%, #e1e8ed 100%);
    min-height: 100vh;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 8px;
}

.wrapper-1 {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    /* border: 1px solid #ffc107; */
}
.wrapper-2 {
    padding: 30px;
    text-align: center;
}
h1 {
    font-family: 'Montserrat', 'Source Sans Pro', sans-serif;
    font-size: 2.8em;
    letter-spacing: 2px;
    color: #2e8f16;
    margin: 0 0 12px 0;
    font-weight: 700;
}
.wrapper-2 p {
    margin: 0;
    font-size: 1.3em;
    color: #585858;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1px;
}
.go-home {
    background: #2e8f16;
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
    padding: 12px 36px;
    margin-top: 18px;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(46,143,22,0.07);
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
}
.go-home:hover {
    background: #fff;
    color: #2e8f16;
    border: 2px solid #2e8f16;
}
a:hover .go-home {
    color: #2e8f16;
}
.go-home a {
    text-decoration: none;
    color: #fff;
}

.footer-like {
    margin-top: auto;
    background: #d7e6fe;
    padding: 6px;
    text-align: center;
}
.footer-like p {
    margin: 0;
    padding: 4px;
    color: #ffc107;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: 1px;
}
.footer-like p a {
    text-decoration: none;
    color: #ffc107;
    font-weight: 600;
}

.thankyou-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(46, 143, 22, 0.10), 0 1.5px 6px rgba(0,0,0,0.07);
    padding: 40px 32px 32px 32px;
    max-width: 670px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #e6f4ea;
}

.thankyou-icon {
    font-size: 60px;
    color: #2e8f16;
    margin-bottom: 10px;
}

.thankyou-card p {
    margin: 0 0 8px 0;
    font-size: 1.1em;
    color: #585858;
    font-family: 'Montserrat', 'Source Sans Pro', sans-serif;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .thankyou-card {
        padding: 24px 6px 18px 6px;
        max-width: 98vw;
    }
    h1 {
        font-size: 1.5em;
    }
    .thankyou-icon {
        font-size: 44px;
    }
}

@media (min-width: 600px) {
    .content {
        max-width: 1000px;
        margin: 0 auto;
    }
    .wrapper-1 {
        height: initial;
        max-width: 620px;
        margin: 0 auto;
        margin-top: 50px;
        box-shadow: 4px 8px 40px 8px lightgray;
    }
}
