:root {
  --primary-color: #2c3e50;
  --accent-color: #e74c3c;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --border-subtle: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #2c3e50;
  overflow-x: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2c3e50 url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd" opacity="0.1"%3E%3Cpath d="M20 0L24.142 14.142H39.354L26.106 22.858L30.248 37.999L20 28.284L9.752 37.999L13.894 22.858L0.646 14.142H15.858z" fill="%23ffffff"/%3E%3C/g%3E%3C/svg%3E') center center/80px auto no-repeat;
  overflow-y: auto;
}

.page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
  padding: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content {
  background: var(--text-light);
  padding: 3.5rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
  backdrop-filter: blur(10px);
}

/* banner inside content */
.banner-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
h1 {
  font-family: 'Crimson Text', serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.social-links {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 2rem;
}

.social-links:empty {
  display: none;
}

.social-links a {
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  margin: 0.5rem 0.3rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
}

.social-links a:hover {
  color: var(--text-light);
  background: var(--accent-color);
  border-radius: 4px;
  transform: translateY(-2px);
}



ul, ol {
  display: inline-block;
  text-align: left;
  max-width: 80%;
  margin: 1.5rem 0;
}

ul li, ol li {
  margin: 0.5rem 0;
  line-height: 1.8;
}

/* Newsletter form styling */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input[type="email"],
input[type="text"],
textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

button,
input[type="submit"] {
  padding: 0.9rem 2rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

button:hover,
input[type="submit"]:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(231, 76, 60, 0.3);
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px dashed var(--accent-color);
  outline-offset: 2px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  body {
    align-items: flex-start;
  }

  .page {
    padding: 1rem 0;
  }

  h1 {
    font-size: 2rem;
  }
  
  .content {
    padding: 2.5rem 1.5rem;
  }
  
  .container {
    padding: 1rem 1.5rem 0.5rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  ul, ol {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }
  
  .content {
    padding: 2rem 1.25rem;
  }
  
  button,
  input[type="submit"] {
    width: 100%;
  }
}

/* override newsletter webform styling */
.inf-main_51b51df8a3111f3a0cde084b46acf1b6 {
  border-radius: 12px !important;
}
.inf-main_51b51df8a3111f3a0cde084b46acf1b6 .inf-content {
  border-radius: 8px;
  overflow: hidden;
}
