:root {
  --primary: #20B2AA;
  --accent-coral: #F08080;
  --accent-gold: #DAA520;
  --neutral-light: #C0C0C0;
  --white: #FFFFFF;
  --black: #000000;
  --dark-bg: #F5F5F5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', 'Source Sans Pro', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: var(--white);
}

h1, h2, h3 {
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #222;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 1rem 0;
}

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

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

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

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

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  padding: 0;
  margin-top: 80px;
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(32,178,170,0.7) 100%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
}

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

.hero p {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.section-light {
  background-color: var(--dark-bg);
}

.section-dark {
  background-color: var(--white);
}

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

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

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

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

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

.card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
}

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

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.button:hover {
  opacity: 0.85;
  background-color: #1a9b8a;
}

.button-secondary {
  background-color: var(--accent-gold);
  color: #333;
}

.button-secondary:hover {
  opacity: 0.85;
  background-color: #c49a1a;
}

footer {
  background-color: #222;
  color: var(--white);
  padding: 4rem 2rem;
  margin-top: 6rem;
}

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

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

.footer-section h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

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

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

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

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

.disclaimer {
  background-color: var(--dark-bg);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

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

input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(32,178,170,0.1);
}

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

.form-disclaimer {
  background-color: #fff3cd;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-gold);
}

.form-disclaimer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.cookie-banner.show {
  display: block;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  min-width: 300px;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
}

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

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

.cookie-accept:hover,
.cookie-decline:hover {
  opacity: 0.85;
}

.cookie-learn {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-learn:hover {
  text-decoration: underline;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

thead {
  background-color: var(--primary);
  color: var(--white);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

tbody tr:hover {
  background-color: var(--dark-bg);
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  margin-bottom: 2rem;
  padding-left: 3rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 12px;
  width: 6px;
  height: 2rem;
  background-color: var(--primary);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

.catalog-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.catalog-item:hover {
  transform: translateY(-8px);
}

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

.catalog-item-content {
  padding: 1.5rem;
}

.catalog-item h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.benefits {
  list-style: none;
  margin: 1rem 0;
}

.benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.inquiry-btn {
  margin-top: 1.5rem;
  display: inline-block;
}

@media (max-width: 768px) {
  header {
    padding: 0.8rem 0;
  }

  .header-container {
    padding: 0 1rem;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    gap: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero {
    height: 400px;
    margin-top: 70px;
  }

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

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

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

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

  .cookie-buttons {
    width: 100%;
    min-width: auto;
  }

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