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

:root {
  --accent-color: #E89F00;
  --accent-light: #f5c962;
  --accent-lighter: #fef3e6;
  --text-dark: #2c3e50;
  --text-light: #f8f9fa;
  --bg-light: #ffffff;
  --bg-lighter: #fef9f3;
  --shadow-soft: 0 2px 12px rgba(232, 159, 0, 0.08);
  --shadow-medium: 0 4px 20px rgba(232, 159, 0, 0.12);
}

html, body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.2px;
}

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

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

a:hover {
  color: #d48600;
  text-decoration: underline;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

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

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

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

main {
  margin-top: 80px;
  padding: 0;
}

section {
  padding: 4rem 0;
}

.section-padding-large {
  padding: 6rem 0;
}

footer {
  background: linear-gradient(135deg, var(--text-dark), #34495e);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p, .footer-section a {
  font-size: 0.95rem;
  color: #ecf0f1;
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

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

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

.footer-policies {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-policies a {
  color: #ecf0f1;
  font-size: 0.9rem;
}

.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(232, 159, 0, 0.2));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.hero-content h1 {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  text-decoration: none;
  color: white;
}

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

.btn-secondary:hover {
  background: var(--accent-lighter);
  text-decoration: none;
}

.content-block {
  background: var(--bg-lighter);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.content-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--accent-color);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

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

.section-title h2 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.section-title p {
  color: #7f8c8d;
  font-size: 1.05rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  background: var(--accent-lighter);
  padding: 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--accent-light);
  color: white;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 1.5rem;
  background: var(--bg-lighter);
  border-radius: 0 0 12px 12px;
  display: none;
  border-top: 2px solid var(--accent-light);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.image-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 300px;
  width: 100%;
}

.image-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 300px;
  width: 100%;
}

.image-center {
  text-align: center;
  margin: 2rem 0;
}

.image-center img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.blog-card {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.blog-card-excerpt {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-link {
  color: var(--accent-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-card-link:hover {
  color: #d48600;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-lighter);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ecf0f1;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(232, 159, 0, 0.1);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--text-dark), #34495e);
  color: var(--text-light);
  padding: 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 159, 0, 0.3);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

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

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

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .hero-section {
    height: 400px;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  section {
    padding: 3rem 0;
  }

  .image-left, .image-right {
    float: none;
    margin: 1rem 0;
    max-width: 100%;
  }

  .row {
    grid-template-columns: 1fr !important;
  }

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

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

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

  header {
    padding: 0.75rem 0;
  }

  .header-wrapper {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.2rem;
  }

  nav {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.8rem;
  }

  .hero-section {
    height: 300px;
  }

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

  .section-title h2 {
    font-size: 1.3rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .cookie-banner {
    padding: 1.5rem;
  }
}
