:root {
  --primary: #1a3a52;
  --accent1: #4dd0e1;
  --accent2: #ff7a7a;
  --accent3: #b0a898;
  --light-bg: #f5f5f5;
  --dark-text: #2c2c2c;
  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--white);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

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

header .logo img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

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

header nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

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

@media (max-width: 768px) {
  header nav {
    gap: 1rem;
    font-size: 0.85rem;
  }
  
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  header nav {
    width: 100%;
    justify-content: center;
  }
}

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

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

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

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

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

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

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

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

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2d5a7b 100%);
  color: var(--white);
  padding: 80px 2rem 60px;
  text-align: center;
  margin-top: 0;
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-image {
  margin-top: 2rem;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.section {
  padding: 80px 2rem;
  margin: 0;
}

.section:nth-child(odd) {
  background-color: var(--white);
}

.section:nth-child(even) {
  background-color: var(--light-bg);
}

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

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

.two-column img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.section-text {
  line-height: 1.8;
}

.section-text p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

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

.card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

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

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

table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

table tr:hover {
  background-color: var(--light-bg);
}

ul, ol {
  margin: 1.5rem 0 1.5rem 2rem;
}

li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.cta-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 2rem;
  text-align: center;
  margin-top: 4rem;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent1);
  color: var(--dark-text);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
  margin: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: var(--accent2);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-button-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-button-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

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

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

footer h3 {
  color: var(--accent1);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

footer a {
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

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

footer p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

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

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

.disclaimer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--dark-text);
}

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

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

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

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent1);
  box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.1);
}

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

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

.form-submit:hover {
  background-color: #2d5a7b;
}

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

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.cookie-btn-accept {
  background-color: var(--accent1);
  color: var(--dark-text);
}

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

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

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

.cookie-btn-more {
  background-color: transparent;
  color: var(--accent1);
  border: 1px solid var(--accent1);
  text-decoration: none;
}

.cookie-btn-more:hover {
  background-color: var(--accent1);
  color: var(--dark-text);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .hero {
    padding: 60px 2rem 40px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 50px 2rem;
  }
  
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}
