* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f0f8f5;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.thank-you-box {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.checkmark {
    font-size: 50px;
    color: green;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    color: #333;
}

p {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.connect, .visit {
    width: 45%;
}

h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.social-icons a img {
    width: 35px;
    margin: 0 5px;
    transition: transform 0.2s ease;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

.visit-btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #84a3ae;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.visit-btn:hover {
    background-color: #85abad;
}

@media (max-width: 768px) {
    .actions {
        flex-direction: column;
        align-items: center;
    }

    .connect, .visit {
        width: 100%;
        margin-bottom: 20px;
    }

    .visit-btn {
        width: 100%;
    }
}
