/* Base styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #03314B; /* dark navy */
  background: #ffffff;
}

/* Header */
.header {
  background: #03314B;
  color: #F5F5F5;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #FDD835; /* gold accent */
}

.logo p {
  margin: 0;
  font-size: 0.9rem;
  color: #B0BEC5; /* light grey */
}

.nav a {
  color: #F5F5F5;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

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

/* Hero */
.hero {
  background: linear-gradient(90deg, #03314B 0%, #00695C 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.hero h2 {
  margin-top: 0;
  font-size: 2.2rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-button {
  background: #FDD835;
  color: #03314B;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

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

/* Services */
.services {
  padding: 40px 20px;
  background: #f7f9fb;
}

.services h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #03314B;
}

.service {
  margin-bottom: 25px;
}

.service h3 {
  color: #00695C;
  margin-bottom: 10px;
}

.service ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 6px;
}

.service ul li::before {
  content: '\2714'; /* Checkmark */
  position: absolute;
  left: 0;
  color: #00695C;
}

/* Pricing */
.pricing {
  padding: 40px 20px;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #03314B;
}

.price-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 20px auto;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price-table th,
.price-table td {
  padding: 12px;
  text-align: left;
}

.price-table th {
  background: #00695C;
  color: white;
  font-weight: normal;
}

.price-table tr:nth-child(even) {
  background: #e9f7f1;
}

.price-table tr:nth-child(odd) {
  background: #ffffff;
}

.price-table td:last-child {
  font-weight: bold;
  color: #00695C;
}

/* Pricing rules & examples */
.pricing-rules,
.pricing-examples {
  max-width: 600px;
  margin: 0 auto 20px auto;
}

.pricing-rules h3,
.pricing-examples h3 {
  color: #03314B;
  margin-bottom: 8px;
}

.pricing-rules ul,
.pricing-examples ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.pricing-rules li,
.pricing-examples li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 6px;
}

.pricing-rules li::before,
.pricing-examples li::before {
  content: '\2605'; /* Star */
  position: absolute;
  left: 0;
  color: #FDD835;
}

/* Contact */
.contact {
  padding: 40px 20px;
  background: #f7f9fb;
  text-align: center;
}

.contact h2 {
  color: #03314B;
  margin-bottom: 10px;
}

.contact a {
  color: #00695C;
  text-decoration: none;
  font-weight: bold;
}

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

/* Footer */
.footer {
  background: #03314B;
  color: #F5F5F5;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .services .service {
    display: inline-block;
    width: 45%;
    vertical-align: top;
    margin: 0 2.5% 20px 2.5%;
  }
  .pricing-rules, .pricing-examples {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}