@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: #f4dfdd;
  color: #400000;
  line-height: 1.6;
}

.navbar {
  background-color: #2f466e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  color: white;
}

.navbar .nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
}

.navbar .contact-btn {
  background-color: white;
  color: #2f466e;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: bold;
}

.hero-section {
  text-align: center;
  padding: 2rem;
}

.tower-area {
  position: relative;
}

.tower-img {
  width: 150px;
  margin: 0 auto;
}

.circle-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 50%;
  padding: 0.8rem 1.2rem;
  font-weight: bold;
  font-size: 1rem;
}

.headline {
  font-size: 3rem;
  margin-top: 1rem;
  color: #a6242b;
  letter-spacing: 0.1em;
}

.highlight-box {
  background-color: #e6ecff;
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 600px;
  border-radius: 10px;
}

.highlight-heading {
  font-weight: bold;
  color: #2f466e;
  margin-bottom: 1rem;
}

.highlight-text {
  font-size: 0.95rem;
  color: #333;
}

.intro {
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}

.callout {
  font-weight: bold;
  color: #a6242b;
  margin-bottom: 1rem;
}

.description {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: #a6242b;
  border: 2px solid #a6242b;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .headline {
    font-size: 2.2rem;
  }

  .tower-img {
    width: 120px;
  }

  .nav-links {
    display: none;
  }
}
