:root {
  --primary: #1A3A2F;
  --secondary: #800020;
  --background: #F5F5F5;
  --footer-bg: #1A3A2F;
  --button: #D4AF37;
  --section-bg-1: #FFFFFF;
  --section-bg-2: #F8F8F8;
  --section-bg-3: #E8E8E8;
  --text-primary: #333333;
  --text-secondary: #555555;
  --gold-accent: #D4AF37;
  --gold-accent-light: #F0E6C2;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 2px solid var(--gold-accent-light);
  padding-bottom: 0.5rem;
  display: inline-block;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--button);
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.section {
  padding: 4rem 0;
}

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

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

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

.header {
  background-color: var(--primary);
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 2rem 0;
}

.card {
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  padding: 2rem;
  transition: all 0.3s ease;
  border-top: 4px solid var(--gold-accent);
}

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

.seal {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--gold-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  border: 3px solid var(--gold-accent);
}

.seal-icon {
  font-size: 3rem;
  color: var(--primary);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }
}