:root {
  --primary: #34495E;
  --accent-orange: #E67E22;
  --accent-green: #27AE60;
  --accent-gray: #BDC3C7;
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --text-dark: #2C3E50;
}

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

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

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

h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

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

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

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

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

.logo {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.logo a {
  color: var(--white);
}

.logo a:hover {
  color: var(--accent-orange);
  text-decoration: none;
}

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

nav a {
  color: var(--white);
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--accent-orange);
  text-decoration: none;
}

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

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

footer h4 {
  color: var(--accent-orange);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

footer p {
  color: #ECF0F1;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

footer a {
  color: #BDC3C7;
}

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

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

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

section {
  padding: 4rem 2rem;
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(52, 73, 94, 0.9) 100%);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero p {
  color: #ECF0F1;
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--accent-orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: 'Source Sans Pro', sans-serif;
  border: 2px solid var(--accent-orange);
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--primary);
  color: var(--accent-orange);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background-color: var(--accent-orange);
  color: var(--white);
}

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

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

.two-column img {
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card {
  background: var(--white);
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.card h3 {
  color: var(--primary);
}

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

.divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-gray), transparent);
  margin: 3rem 0;
}

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #BDC3C7;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

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

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

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

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

.cookie-buttons button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-accept {
  background: var(--accent-orange);
  color: var(--white);
}

.btn-accept:hover {
  background: var(--accent-green);
}

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

.btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.disclaimer-block {
  background: #F8F9FA;
  border-left: 4px solid var(--accent-orange);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-block h4 {
  color: var(--primary);
  margin-top: 0;
  font-family: 'Source Sans Pro', sans-serif;
}

.disclaimer-block p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 2rem auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: block;
}

.blog-item {
  background: var(--white);
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.blog-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-item-content {
  padding: 2rem;
}

.blog-item h3 {
  margin-top: 0;
}

.read-more {
  color: var(--accent-orange);
  font-weight: 600;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .hero {
    padding: 3rem 2rem;
  }

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

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
  }

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

  .cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  section {
    padding: 2.5rem 1rem;
  }

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