/* Root variables for easy customization */
:root {
  --primary-color: #004b8d;
  --secondary-color: #f7941d;
  --background-color: #fdfdfd;
  --text-color: #222;
  --light-grey: #f5f5f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.5rem 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
}

.logo .highlight {
  color: var(--secondary-color);
}

.main-nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: 1.5rem;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary-color);
}

.main-nav .button {
  background-color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: #fff;
}

.main-nav .button:hover,
.main-nav .button:focus {
  background-color: #d77b12;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: var(--light-grey);
}

.hero-img {
  flex: 1 1 40%;
  position: relative;
  min-width: 300px;
}

.hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  flex: 1 1 50%;
  padding: 2rem;
}

.hero h1 {
  font-size: 2rem;
  margin-top: 0;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.1rem;
  margin: 1rem 0 2rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #d77b12;
}

.section {
  padding: 3rem 0;
}

.section h2 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background-color: var(--light-grey);
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item h3 {
  color: var(--primary-color);
  margin-top: 0;
}

.prices p {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.price-table th,
.price-table td {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  text-align: center;
}

.price-table thead {
  background-color: var(--primary-color);
  color: #fff;
}

.price-table tbody tr:nth-child(even) {
  background-color: var(--light-grey);
}

.price-table tbody tr:hover {
  background-color: #eaeaea;
}

.fine-print {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

.about p {
  margin-bottom: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tips ul {
  list-style: disc;
  padding-left: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.tips li {
  margin-bottom: 0.75rem;
}

.faq details {
  background-color: var(--light-grey);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
}

.faq summary {
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
}

.contact-info p {
  margin: 0.5rem 0;
}

.contact-form {
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-row label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-row input,
.form-row textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.site-footer {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

.site-footer a {
  color: var(--secondary-color);
  text-decoration: none;
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero-img,
  .hero-content {
    flex: 1 1 100%;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav li {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
}
