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

:root {
  --primary: #5F7C8A;
  --secondary: #F7F7F7;
  --accent-pink: #E0BBE4;
  --accent-gold: #FDE2B5;
  --accent-aqua: #3E8C8E;
  --dark-text: #2C2C2C;
  --light-text: #666666;
  --border-light: #E0E0E0;
  --cream: #FCFBF7;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  color: var(--primary);
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  color: var(--dark-text);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

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

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

header {
  background-color: var(--cream);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
  font-family: 'Arial', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.logo-text {
  cursor: pointer;
}

.logo-text:hover {
  color: var(--accent-aqua);
}

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

nav a {
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  color: var(--dark-text);
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
  position: relative;
}

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

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-gold);
}

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

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

.hero-section {
  background-color: var(--primary);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
}

.section {
  padding: 5rem 2rem;
}

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

.section-dark h2,
.section-dark h3 {
  color: white;
}

.section-dark p {
  color: rgba(255,255,255,0.9);
}

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

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background-color: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-top: 3px solid var(--accent-gold);
}

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

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

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

.image-block {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 3px;
  border: 2px solid var(--primary);
  cursor: pointer;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.button:hover {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--accent-gold);
}

.button-secondary {
  background-color: var(--accent-aqua);
  border-color: var(--accent-aqua);
}

.button-secondary:hover {
  background-color: transparent;
  color: var(--accent-aqua);
}

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

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: white;
  margin-bottom: 1rem;
  font-family: 'Arial', sans-serif;
}

.footer-section a {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: white;
}

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

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

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

.disclaimer-box {
  background-color: var(--accent-gold);
  padding: 2rem;
  border-left: 4px solid var(--primary);
  margin: 2rem 0;
  border-radius: 3px;
}

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

.disclaimer-box p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.list-item {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.list-item::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-aqua);
  font-size: 1.2rem;
}

.contact-info {
  background-color: var(--cream);
  padding: 2rem;
  border-radius: 4px;
  border-left: 4px solid var(--accent-aqua);
  margin: 2rem 0;
}

.contact-info p {
  margin-bottom: 0.75rem;
}

.contact-info a {
  color: var(--accent-aqua);
}

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(--dark-text);
  font-family: 'Arial', sans-serif;
}

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

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

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

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

.product-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;
}

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

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

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

.product-card h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.faq-item {
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  background-color: var(--cream);
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Arial', sans-serif;
  transition: background-color 0.3s ease;
}

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

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.25rem;
  max-height: 500px;
}

.two-column-text {
  column-count: 2;
  column-gap: 2rem;
  text-align: justify;
}

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

  h2 {
    font-size: 1.75rem;
  }

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

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

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .section {
    padding: 2rem 1rem;
  }

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

  .footer-section {
    margin-bottom: 1rem;
  }

  header {
    padding: 0.75rem 0;
  }

  .hero-section {
    padding: 3rem 1rem;
    min-height: 300px;
  }

  main {
    margin-top: 70px;
  }

  .two-column-text {
    column-count: 1;
  }

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