:root {
  --primary-color: #0F4C5C;
  --secondary-color: #F4F1DE;
  --accent-1: #E0B843;
  --accent-2: #8C382C;
  --off-white: #FCFCFC;
  --light-grey: #E8E8E8;
  --medium-grey: #888888;
  --dark-grey: #333333;
}

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

html, body {
  font-family: 'Georgia', 'Garamond', serif;
  background-color: var(--off-white);
  color: var(--dark-grey);
  line-height: 1.6;
}

body {
  font-size: 16px;
}

header {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

header nav a {
  color: var(--secondary-color);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-1);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

header nav a.active {
  color: var(--accent-1);
}

main {
  flex: 1;
}

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

section {
  padding: 80px 0;
  border-bottom: 1px solid var(--light-grey);
}

section:last-of-type {
  border-bottom: none;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Arial', sans-serif;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.4;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 0.8rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--dark-grey);
}

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

a:hover {
  color: var(--accent-1);
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

ul li, ol li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.hero {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

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

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--secondary-color);
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.hero-text p {
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--light-grey);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  background-color: #f8f6f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: scale(1.01);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.image-full {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin: 2rem 0;
  border-radius: 4px;
}

footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 3rem 0;
  margin-top: 80px;
  font-size: 0.95rem;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

footer h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

footer a {
  color: var(--secondary-color);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-1);
}

footer .footer-bottom {
  border-top: 1px solid rgba(244, 241, 222, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1.5rem 2rem;
  z-index: 1000;
  display: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-banner .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  header nav {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  footer .container {
    grid-template-columns: 1fr;
  }

  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner .cookie-buttons {
    width: 100%;
  }

  .cookie-banner .btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  header .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  p {
    font-size: 0.95rem;
  }

  section {
    padding: 40px 0;
  }

  .container {
    padding: 0 1rem;
  }
}
