:root {
  --deep-teal: #1b6b6b;
  --soft-gold: #d4a574;
  --muted-grey: #8b9b9b;
  --forest-green: #3d5a4f;
  --light-bg: #f5f7f6;
  --white: #ffffff;
  --text-dark: #2c3e50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', 'Lato', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--deep-teal);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  color: var(--deep-teal);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--forest-green);
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--deep-teal) !important;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--soft-gold) !important;
}

body {
  padding-top: 70px;
}

section {
  padding: 100px 0;
}

.hero {
  background: linear-gradient(135deg, var(--deep-teal) 0%, #2a8f8f 100%);
  color: var(--white);
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--soft-gold);
}

.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card-body {
  padding: 2rem;
}

.btn-primary {
  background-color: var(--deep-teal);
  border-color: var(--deep-teal);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 107, 107, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--soft-gold);
  color: var(--soft-gold);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--soft-gold);
  color: var(--white);
}

.row-alt {
  align-items: center;
  gap: 3rem;
}

.row-alt img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

footer {
  background-color: var(--deep-teal);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 5rem;
  font-size: 0.95rem;
}

footer h5 {
  color: var(--soft-gold);
  margin-bottom: 1rem;
  font-weight: 700;
}

footer a {
  color: var(--light-bg);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--soft-gold);
}

footer .contact-info {
  line-height: 1.8;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.8);
}

.table-custom {
  margin: 2rem 0;
  border-collapse: collapse;
  width: 100%;
}

.table-custom th {
  background-color: var(--deep-teal);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

.table-custom td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.table-custom tr:hover {
  background-color: var(--light-bg);
}

.disclaimer-box {
  background-color: var(--light-bg);
  border-left: 4px solid var(--soft-gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box p {
  margin: 0;
  font-style: italic;
  color: var(--forest-green);
}

.form-group label {
  font-weight: 600;
  color: var(--deep-teal);
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--soft-gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.section-accent {
  background-color: var(--light-bg);
}

.section-accent h2 {
  color: var(--deep-teal);
}

.image-wrapper {
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .row-alt {
    gap: 1.5rem;
  }
  
  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }
}

.list-styled {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.list-styled li {
  margin-bottom: 0.75rem;
  list-style-type: none;
  position: relative;
  padding-left: 1.5rem;
}

.list-styled li:before {
  content: '▪';
  color: var(--soft-gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.quote-block {
  border-left: 4px solid var(--soft-gold);
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--muted-grey);
  background-color: rgba(212, 165, 116, 0.05);
}

.cta-section {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--deep-teal) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
