@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Bitter:wght@400;700&display=swap');

:root {
  --primary-color: #00695C;
  --bg-color: #FAFAFA;
  --text-color: #222222;
  --text-light: #666666;
  --border-color: #E8E8E8;
  --white: #FFFFFF;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

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

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-color);
  line-height: 1.7;
}

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1150px;
  margin: 0 auto;
}

.logo {
  font-family: 'Bitter', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo a {
  color: var(--primary-color);
}

.logo a:hover {
  color: #004d42;
  text-decoration: none;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  transition: color 0.24s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

main {
  margin-top: 70px;
  padding: 2rem 0;
}

section {
  padding: 3rem 0;
}

.hero {
  background-color: var(--white);
  padding: 4rem 20px;
  text-align: center;
}

.hero h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero img {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  border-radius: 9px;
  box-shadow: var(--shadow);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

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

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

@media (max-width: 768px) {
  .col-6 {
    flex: 0 1 100%;
  }
  
  .row {
    gap: 1.5rem;
  }
}

.card {
  background-color: var(--white);
  border-radius: 9px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: box-shadow 0.24s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.card-img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.card-title {
  font-family: 'Bitter', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

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

.btn:hover {
  background-color: #004d42;
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 105, 92, 0.3);
}

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

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

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

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 2rem 0;
}

footer {
  background-color: #222222;
  color: #CCCCCC;
  font-size: 0.9rem;
  margin-top: 4rem;
  padding: 3rem 20px;
  line-height: 1.8;
}

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

footer h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

footer a {
  color: #88CCBB;
  transition: color 0.24s ease;
}

footer a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

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

.footer-section {
  border-bottom: 1px solid #333333;
  padding-bottom: 2rem;
}

.footer-section:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 2rem;
  text-align: center;
  color: #999999;
  font-size: 0.85rem;
}

.disclaimer {
  background-color: #F5F5F5;
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
  font-style: italic;
  color: var(--text-light);
}

.disclaimer strong {
  color: var(--primary-color);
  font-style: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  box-shadow: var(--shadow);
}

table th {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

table tbody tr:hover {
  background-color: #F9F9F9;
}

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

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

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.24s ease;
}

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

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

.image-left {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  max-width: 300px;
  border-radius: 9px;
  box-shadow: var(--shadow);
}

.image-right {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  max-width: 300px;
  border-radius: 9px;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .image-left,
  .image-right {
    float: none;
    margin: 1rem auto;
    max-width: 100%;
    display: block;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222222;
  color: var(--white);
  padding: 1.5rem 20px;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-text a {
  color: #88CCBB;
}

.cookie-text a:hover {
  color: var(--primary-color);
}

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

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

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

.cookie-btn-accept:hover {
  background-color: #004d42;
}

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

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

@media (max-width: 768px) {
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
