@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap");

:root {
  --primary-dark: #333d36;
  --primary-light: #78ae87;
  --cta-color: #f2855e;
  --bg-light: #f4f4f4;
  --text-main: #333d36;
  --text-muted: #666;
  --white: #ffffff;
}

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

body {
  font-family: "Outfit", sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  flex: 1;
}

header {
  margin-bottom: 40px;
}

header img {
  max-width: 250px;
  height: auto;
}

h1 {
  color: var(--primary-light);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.content-section {
  position: relative;
  padding: 40px 0;
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.info-block {
  margin-bottom: 40px;
  text-align: left;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.info-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.info-list {
  list-style: none;
  margin-bottom: 20px;
}

.info-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: bold;
}

.info-list b {
  color: var(--primary-dark);
}

.closing-text {
  font-weight: 600;
  margin: 30px 0;
}

.cta-button {
  display: inline-block;
  background-color: var(--cta-color);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background-color 0.2s;
  box-shadow: 0 4px 15px rgba(242, 133, 94, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  background-color: #e57650;
  box-shadow: 0 6px 20px rgba(242, 133, 94, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

footer {
  background-color: var(--bg-light);
  height: 180px;
  width: 100%;
  position: relative;
}

.footer-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-overlay img {
  width: 550px;
  height: auto;
}

@media (max-width: 768px) {
  .footer-overlay img {
    width: 300px;
    height: auto;
  }

  h1 {
    font-size: 1.8rem;
  }
  .cta-button {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
  }
}
