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

body {
  font-family: 'Raleway', sans-serif; /* Clean and bold sans-serif font */
  background: linear-gradient(135deg, #0b3d0b, #183c2b); /* Dark green gradient */
  color: #e6ddd5; /* Softer white with brown undertones */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
}

/* Logo Header */
.logo-header {
  margin-bottom: 40px;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-circle {
  width: 120px; /* Sleek logo size */
  height: 120px;
  background-color: #598dbf; /* Blue background for logo */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-text {
  font-family: 'DM Serif Display', serif; /* Elegant serif font for logo */
  font-size: 2.5rem; /* Bold and prominent logo text */
  color: #ffffff; /* White text for contrast */
}

.logo-title {
  margin-top: 20px;
  font-size: clamp(1.8rem, 2vw, 2.5rem); /* Scalable typography */
}

/* Headline Styling */
.headline {
  font-size: clamp(3rem, 6vw, 5rem); /* Scalable typography for headline */
  font-weight: bold;
}

.subheadline {
  margin-top: -10px;
font-size.
