/* CSS Document */
/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  color: #222;
}
.site-alert {
  background: #e30613;
  color: white;
  padding: 0.75em 1em;
  text-align: center;
  font-weight: bold;
  position: relative;
}

.site-alert button {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
}

/* Header */
.logo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a0a23;
  color: white;
  padding: 1em 2em;
  flex-wrap: wrap;
}

.logo-header .logo {
  max-height: 60px;
}

.logo-header nav a {
  color: white;
  margin-left: 1.5em;
  text-decoration: none;
  font-weight: bold;
}

.logo-header nav a:hover {
  text-decoration: underline;
}
nav a.active {
  color: #e30613; /* or your brand color */
  font-weight: bold;
  border-bottom: 2px solid #e30613;
}

/* Hero Section */
.hero {
  background: #13132b;
  color: white;
  text-align: center;
  padding: 4em 2em;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.cta-button {
  background: #e30613;
  color: white;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.cta-button:hover {
  background: #a3040f;
}

/* Content Sections */
.content-section {
  padding: 3em 2em;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  margin-bottom: 2em;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.content-section h2 {
  text-align: center;
  margin-bottom: 1em;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  text-align: center;
}

.service-item i {
  font-size: 2.5em;
  color: #e30613;
  margin-bottom: 0.5em;
}

/* Testimonials */
blockquote {
  font-style: italic;
  border-left: 4px solid #e30613;
  padding-left: 1em;
  margin: 1em 0;
}

blockquote span {
  display: block;
  margin-top: 0.5em;
  font-weight: bold;
}

/*Form Button */

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
form label, form input, form textarea, form button {
  width: 100%;
  max-width: 500px;
}

form button {
  background-color: #e30613;
  color: white;
  padding: 0.6em 1.5em;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  display: inline-block;
  margin: 0 auto;
}

form button:hover {
  background-color: #b8000f;
}


/* Footer */
.footer {
  background: #0a0a23;
  color: white;
  padding: 2em;
  text-align: center;
}

.footer a {
  color: #e30613;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .logo-header {
    flex-direction: column;
    text-align: center;
  }

  .logo-header nav {
    margin-top: 1em;
  }
}

