* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Oswald', Arial;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.thank-you-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;

}

.thank-you-content {
    max-width: 800px;
    padding: 2rem;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.thank-you h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.thank-you p {
    font-size: 20px;
    line-height: 1.6;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #555;
}

.home-button {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Oswald', sans-serif;
    border: none;
    margin-top: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

.home-button:hover {
    background-color: #ffffff;
    color: black;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.contact-button.active::after {
  content: '';
  position: absolute;
  bottom: 4px; /* Adjust this to move the dot up or down */
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: white;
  border-radius: 50%;
}

.contact-button {
  position: relative; /* Required for ::after to position correctly */
  background-color: black;
  color: white;
  padding: 7px 15px;
  border-radius: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.2s;
}


/* Mobile styles */
@media (max-width: 768px) {
    .thank-you-content {
        border-radius: 10px;
        gap: 30px;
    }
    .thank-you h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .thank-you p {
        font-size: 1rem;
    }
    
    .home-button {
        margin-top: 30px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}