:root {
  --primary: #3A7373;
  --accent1: #F0A300;
  --accent2: #D3D3D3;
  --accent3: #6A6A6A;
  --white: #FFFFFF;
  --black: #000000;
}

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

html {
  scroll-behavior: smooth;
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

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

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--accent3);
}

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

a:hover {
  color: var(--accent1);
}

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

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 1rem 2rem;
}

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

.logo img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

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

.nav-menu a {
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent1);
}

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

.nav-menu a:hover::after {
  width: 100%;
}

main {
  margin-top: 80px;
}

section {
  padding: 5rem 2rem;
  max-width: 100%;
}

.hero {
  background: linear-gradient(135deg, rgba(58, 115, 115, 0.8), rgba(240, 163, 0, 0.1));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-sunrise.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

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

.disclaimer-notice {
  background-color: rgba(212, 212, 212, 0.95);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--primary);
  line-height: 1.6;
}

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

.column-text h2 {
  margin-bottom: 1.5rem;
}

.column-text p {
  margin-bottom: 1rem;
}

.column-image {
  position: relative;
}

.column-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.column-image img:hover {
  transform: translateY(-5px);
}

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

.card {
  background-color: var(--white);
  border: 1px solid var(--accent2);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent1);
}

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

.card p {
  color: var(--accent3);
  font-size: 0.95rem;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 1rem;
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  background-color: var(--accent1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(240, 163, 0, 0.3);
  color: var(--black);
}

.list-section ul {
  list-style-position: inside;
  margin-left: 1rem;
  margin-top: 1rem;
}

.list-section li {
  margin-bottom: 0.8rem;
  color: var(--accent3);
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--accent2);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--accent3);
  margin-top: 1rem;
}

.faq-answer.active {
  max-height: 500px;
}

.toggle-icon {
  font-size: 1.2rem;
}

.contact-section {
  background-color: var(--accent2);
  border-radius: 8px;
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.info-block {
  display: flex;
  flex-direction: column;
}

.info-block h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.info-block p {
  color: var(--accent3);
  margin: 0;
}

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

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

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--primary);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent1);
  box-shadow: 0 0 5px rgba(240, 163, 0, 0.3);
}

.form-disclaimer {
  background-color: var(--white);
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--accent3);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
}

.submit-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.submit-btn:hover {
  background-color: var(--accent1);
  transform: translateY(-2px);
  color: var(--black);
}

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

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

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

.footer-block h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent1);
}

.footer-block p {
  color: var(--accent2);
  margin-bottom: 0.5rem;
}

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

.footer-links a {
  color: var(--accent2);
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--accent1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.footer-bottom p {
  color: var(--accent2);
  margin: 0;
  font-size: 0.9rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  margin: 0;
}

.close-btn {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent3);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--primary);
}

.modal-body p {
  margin-bottom: 1rem;
  color: var(--accent3);
}

.modal-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
  color: var(--accent3);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  gap: 2rem;
}

.cookie-banner.hidden {
  display: none;
}

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

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--accent1);
  color: var(--black);
}

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

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

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

.thank-you-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  z-index: 2001;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: none;
}

.thank-you-modal.active {
  display: block;
}

.thank-you-modal h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you-modal p {
  color: var(--accent3);
  margin-bottom: 1.5rem;
}

.thank-you-modal button {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.thank-you-modal button:hover {
  background-color: var(--accent1);
  color: var(--black);
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1rem;
  }

  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

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

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

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

  section {
    padding: 3rem 1rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

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

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

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

@media (max-width: 480px) {
  .nav-menu {
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  .hero {
    padding: 5rem 1rem;
  }

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

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .modal-content {
    width: 95%;
  }

  .card {
    padding: 1.5rem;
  }
}
