:root {
  --primary: #4A6D7C;
  --accent1: #D0B49F;
  --accent2: #98B9AB;
  --accent3: #EAE0D5;
  --dark: #2c3e50;
  --light: #f5f3f0;
  --text: #333333;
  --border: #d1c7bb;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', 'Georgia', serif;
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  background-color: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

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

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

nav a.active {
  color: var(--primary);
}

nav a.active::after {
  width: 100%;
}

footer {
  background-color: var(--primary);
  color: white;
  margin-top: 4rem;
  padding: 3rem 40px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent3);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

.footer-section a {
  color: var(--accent3);
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--accent2);
  text-decoration: underline;
}

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

.footer-message {
  font-style: italic;
  margin-bottom: 1rem;
}

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

section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background-color: white;
}

section:nth-child(odd) {
  background-color: var(--light);
}

.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(74, 109, 124, 0.9) 100%);
  color: white;
  padding: 6rem 40px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content h1 {
  color: white;
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1.2px;
  font-weight: 700;
}

.hero-content h2 {
  color: var(--accent3);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.section-title h2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.two-column-reverse {
  grid-template-columns: 1fr 1fr;
}

.two-column-reverse.reverse {
  direction: rtl;
}

.two-column-reverse.reverse > * {
  direction: ltr;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

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

.feature-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-card h3 {
  margin-top: 0;
  color: var(--primary);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
}

.cta-button:hover {
  background-color: var(--text);
  border-color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.cta-button.secondary:hover {
  background-color: var(--primary);
  color: white;
}

.disclaimer-section {
  background-color: var(--accent3);
  padding: 2rem;
  border-left: 4px solid var(--accent1);
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer-section h4 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.disclaimer-section p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #555;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Open Sans', sans-serif;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 109, 124, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.thank-you-message {
  text-align: center;
  padding: 3rem 0;
}

.thank-you-message h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you-message p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-content h3 {
  margin-top: 0;
  color: var(--primary);
}

.blog-card-content p {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #666;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.blog-date {
  font-size: 0.85rem;
  color: #999;
}

.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-read-more:hover {
  color: var(--accent1);
}

.full-width-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin: 2rem 0;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.content-section-text {
  flex: 1;
}

.content-section-image {
  flex: 1;
}

.content-section-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.highlight-box {
  background-color: var(--accent3);
  padding: 2rem;
  border-radius: 4px;
  border-left: 4px solid var(--accent1);
  margin: 2rem 0;
}

.highlight-box h3 {
  margin-top: 0;
  color: var(--primary);
}

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

li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

th {
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

tr:nth-child(even) {
  background-color: rgba(234, 224, 213, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1.5rem 40px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  z-index: 999;
  max-width: 100%;
}

.cookie-banner.hidden {
  display: none;
}

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text);
}

.cookie-text p {
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-btn-accept {
  background-color: var(--primary);
  color: white;
}

.cookie-btn-accept:hover {
  background-color: var(--text);
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}

.cookie-btn-decline:hover {
  border-color: var(--primary);
  background-color: var(--light);
}

.cookie-btn-review {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}

.cookie-btn-review:hover {
  border-color: var(--primary);
  background-color: var(--light);
}

.policy-section {
  margin: 2rem 0;
}

.policy-section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #999;
}

.breadcrumb a {
  color: var(--primary);
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
    letter-spacing: 0.5px;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .header-container {
    padding: 0 20px;
    height: 70px;
  }

  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 0.85rem;
  }

  .container {
    padding: 0 20px;
  }

  section {
    padding: 2.5rem 0;
  }

  .hero-section {
    padding: 3rem 20px;
    min-height: 400px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h2 {
    font-size: 1.1rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .content-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-container {
    padding: 0 20px;
  }

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

  .contact-form {
    padding: 1.5rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

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

  .full-width-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1rem;
  }

  .header-container {
    padding: 0 15px;
    height: 60px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  nav ul {
    gap: 10px;
  }

  nav a {
    font-size: 0.75rem;
  }

  .container {
    padding: 0 15px;
  }

  .hero-section {
    padding: 2rem 15px;
    min-height: 300px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .footer-container {
    padding: 0 15px;
  }

  .disclaimer-section {
    padding: 1.5rem;
  }

  .cookie-banner {
    padding: 1rem 15px;
  }

  .cookie-text {
    font-size: 0.85rem;
  }

  .cookie-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}
