/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #FAEBD7; /* Antique White */
  color: #1A1A1A;
  line-height: 1.6;
}

/* Header */
header {
  background-color: rgb(208, 208, 210);
  color: #DC143C;
  text-align: center;
  padding: 1.5rem 1rem;
}

.logo-title img.logo {
  max-width: 200px;
  margin-bottom: 0.5rem;
}

.logo-title h1 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.logo-title p {
  font-size: 1.1rem;
  font-style: italic;
}

/* Hotline Banner */
.hotline-banner {
  background-color: crimson;
  color: white;
  padding: 0.5rem;
  font-weight: bold;
  text-align: center;
}

.call-button {
  background-color: white;
  color: crimson;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  text-decoration: none;
  margin-left: 0.5rem;
}

.call-button:hover {
  background-color: lightgrey;
}

/* Navigation */
nav {
  background-color: lightgrey;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.8rem;
  gap: 1rem;
}

nav a {
  color: rgb(3, 3, 73);
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

nav a:hover {
  background-color: crimson;
  color: white;
}

/* Main Sections */
main {
  padding: 2rem 1rem;
}

.section {
  background-color: #ffffff;
  border-left: 5px solid crimson;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.section h2 {
  color: navy;
  margin-bottom: 0.5rem;
}

.section p {
  font-size: 1rem;
}

/* Call to Action */
.cta {
  text-align: center;
  background-color: navy;
  color: antiquewhite;
  padding: 2rem 1rem;
  border-radius: 8px;
}

.cta-button {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.7rem 1.2rem;
  background-color: crimson;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: lightgrey;
  color: crimson;
}

/* Footer */
footer {
  background-color: lightgrey;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
  }

  .logo-title h1 {
    font-size: 1.5rem;
  }

  .section {
    padding: 1rem;
  }

  .cta-button {
    width: 80%;
    margin: 0.5rem auto;
  }
}

/* Home Button Styling */
.home-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: rgb(102, 234, 234);
  color: crimson;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 1000;
}

.home-button:hover {
  background-color: rgb(124, 185, 147);
  transform: scale(1.05);
}
