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

:root {
  --color-cadet-blue: #4a6b8a;
  --color-soft-gold: #d4af7a;
  --color-earthy-brown: #7d6651;
  --color-krem: #f5f1e8;
  --color-text-dark: #2c3e50;
  --color-text-light: #5a5a5a;
  --color-border: #e8e3d8;
  --color-bg-light: #f9f7f3;
  --spacing-large: 4rem;
  --spacing-medium: 2rem;
  --spacing-small: 1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Garamond', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-medium);
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-cadet-blue);
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-cadet-blue);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-cadet-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--color-cadet-blue);
}

@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

/* Body spacing for fixed header */
body {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-cadet-blue) 0%, #5a7a9a 100%);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/hero-landscape.jpg') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
}

.hero p {
  color: #f0f0f0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Section */
section {
  padding: var(--spacing-large) 2rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Two Column Section */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.column-content h3 {
  margin-bottom: 1.5rem;
}

.column-content p {
  margin-bottom: 1rem;
}

.column-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.column-content li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Three Column */
.three-column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.column-item {
  text-align: center;
  padding: 1.5rem;
}

.column-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.column-item h3 {
  color: var(--color-cadet-blue);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.column-item p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

@media (max-width: 992px) {
  .three-column {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .three-column {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background: var(--color-bg-light);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
  color: var(--color-cadet-blue);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--color-cadet-blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
}

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

.btn-secondary {
  background-color: var(--color-soft-gold);
  color: var(--color-text-dark);
}

.btn-secondary:hover {
  background-color: var(--color-earthy-brown);
  color: #fff;
}

/* Alternating sections */
section:nth-child(even) {
  background-color: var(--color-bg-light);
}

/* Footer */
footer {
  background-color: var(--color-cadet-blue);
  color: #fff;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--color-soft-gold);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #e8e3d8;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-disclaimer {
  background-color: rgba(0,0,0,0.1);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #d4d4d4;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 2rem;
  z-index: 999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  max-height: 120px;
  overflow-y: auto;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--color-cadet-blue);
  color: #fff;
}

.cookie-accept:hover {
  background-color: var(--color-earthy-brown);
}

.cookie-reject {
  background-color: var(--color-border);
  color: var(--color-text-dark);
}

.cookie-reject:hover {
  background-color: #ddd;
}

.cookie-link {
  color: var(--color-cadet-blue);
  text-decoration: underline;
  cursor: pointer;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--color-bg-light);
}

table th,
table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

table th {
  background-color: var(--color-cadet-blue);
  color: #fff;
  font-weight: 600;
}

table tr:hover {
  background-color: #f0ebe5;
}

/* FAQ */
.faq-item {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  border-left: 4px solid var(--color-soft-gold);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
  font-weight: 600;
  color: var(--color-cadet-blue);
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.faq-answer {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--color-bg-light);
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-text-dark);
  font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-cadet-blue);
  box-shadow: 0 0 0 3px rgba(74, 107, 138, 0.1);
}

.form-disclaimer {
  background-color: #fff;
  border: 1px solid var(--color-border);
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Page sections */
.main-content {
  min-height: calc(100vh - 200px);
}

/* Responsive */
@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  section {
    padding: 2rem 1rem;
  }
  
  .header-container {
    padding: 0 1rem;
  }
  
  nav ul {
    gap: 1rem;
    font-size: 0.8rem;
  }
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 2rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
