:root {
  --primary: #2c3e50;
  --secondary: #ecf0f1;
  --accent-red: #e74c3c;
  --accent-yellow: #f1c40f;
  --accent-green: #2ecc71;
  --text-primary: #2c3e50;
  --text-secondary: #7f8c8d;
  --border-light: #bdc3c7;
  --white: #ffffff;
  --dark-gray: #34495e;
  --light-gray: #95a5a6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--white);
}

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

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

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

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

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: var(--accent-yellow);
  border-bottom-color: var(--accent-yellow);
}

nav a.active {
  color: var(--accent-yellow);
  border-bottom-color: var(--accent-yellow);
}

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

section {
  padding: 5rem 0;
}

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

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary);
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-light);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

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

.hero-section {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%),
    url('images/img1-hero.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 8rem 0;
  position: relative;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.disclaimer-badge {
  display: inline-block;
  background-color: var(--accent-yellow);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -1.5rem;
}

.col-md-6,
.col-md-8,
.col-md-4 {
  padding: 1.5rem;
}

.col-md-6 {
  flex: 0 0 calc(50% - 3rem);
}

.col-md-4 {
  flex: 0 0 calc(33.333% - 3rem);
}

.col-md-8 {
  flex: 0 0 calc(66.666% - 3rem);
}

@media (max-width: 768px) {
  .col-md-6,
  .col-md-4,
  .col-md-8 {
    flex: 0 0 calc(100% - 3rem) !important;
  }
}

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

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

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn:hover {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

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

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

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);
}

input[type='email'],
input[type='text'],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

input[type='email']:focus,
input[type='text']:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

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

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

footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--accent-yellow);
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.divider {
  height: 1px;
  background-color: var(--border-light);
  margin: 3rem 0;
}

.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent-red);
  text-decoration: none;
}

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

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

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

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

.cookie-btn-accept:hover {
  opacity: 0.9;
  box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
}

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

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-more {
  background-color: transparent;
  color: var(--accent-yellow);
  border: 1px solid var(--accent-yellow);
  text-decoration: none;
}

.cookie-btn-more:hover {
  background-color: rgba(241, 196, 15, 0.1);
}

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

.blog-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-bottom: 0.75rem;
}

.blog-card p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-secondary);
}

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

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

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

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

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-4 {
  padding-left: 2rem;
  padding-right: 2rem;
}

ul,
ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: var(--text-primary);
}

li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

blockquote {
  border-left: 4px solid var(--accent-red);
  padding: 1rem 1.5rem;
  background-color: var(--secondary);
  margin: 2rem 0;
  font-style: italic;
  color: var(--dark-gray);
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero-section {
    padding: 4rem 0;
    min-height: 50vh;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    gap: 1rem;
    justify-content: center;
  }

  section {
    padding: 3rem 0;
  }

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

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

  .footer-section {
    text-align: center;
  }
}

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

  header .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.95rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

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