:root {
  --primary: #2F4F4F;
  --accent1: #E97451;
  --accent2: #8A9A5B;
  --accent3: #D4AF37;
  --neutral-light: #F5F5F5;
  --neutral-medium: #E8E8E8;
  --neutral-dark: #333333;
  --white: #FFFFFF;
  --text: #333333;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

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

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

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

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

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

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

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

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

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

.nav-links a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero {
  margin-top: 70px;
  background: linear-gradient(135deg, rgba(47, 79, 79, 0.7) 0%, rgba(233, 116, 81, 0.5) 100%), 
              url('images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 120px 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

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

.hero p {
  color: var(--white);
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.section {
  padding: 80px 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

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

.section-content {
  flex: 1;
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  max-width: 450px;
}

.section:nth-child(odd) .section-image {
  order: -1;
}

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

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--accent1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent1);
  color: var(--white);
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--accent1);
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--accent2);
  border-color: var(--accent2);
  color: var(--white);
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent1);
}

.btn-secondary:hover {
  background-color: var(--accent1);
  color: var(--white);
}

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

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--accent3);
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--neutral-light);
  transition: color 0.3s ease;
}

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

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

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

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

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--neutral-medium);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent1);
  box-shadow: 0 0 0 3px rgba(233, 116, 81, 0.1);
}

.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;
  gap: 2rem;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

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

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

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

.cookie-accept:hover {
  background-color: #F0E68C;
}

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

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

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

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

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

  .nav-links {
    display: none;
  }

  .section {
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 1rem;
  }

  .section:nth-child(odd) .section-image {
    order: 0;
  }

  .section-image img {
    max-width: 100%;
  }

  .hero {
    padding: 60px 1rem;
    min-height: 400px;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  footer {
    padding: 2rem 1rem;
  }

  .footer-content {
    gap: 2rem;
  }
}

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

.mt-4 {
  margin-top: 4rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.highlight {
  color: var(--accent1);
  font-weight: 600;
}

.education-banner {
  background-color: #FFF8DC;
  border: 1px solid var(--accent3);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  text-align: center;
}

.education-banner p {
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}
