:root {
  --primary-orange: #F4A261;
  --sky-blue: #90E0EF;
  --cream: #FEFCF3;
  --navy: #0D3B66;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border-light: #e0e0e0;
}

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

html, body {
  font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
}

body {
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 8px rgba(13, 59, 102, 0.08);
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 16px rgba(13, 59, 102, 0.15);
}

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

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

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

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-orange);
}

.container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 100px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .navbar-nav {
    gap: 1rem;
    font-size: 14px;
  }
  
  .navbar-brand {
    font-size: 18px;
  }
}

section {
  padding: 140px 0;
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

h1, h2, h3 {
  font-family: 'Proxima Nova', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 48px;
}

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

h2 {
  font-size: 40px;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

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

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.75;
}

.hero {
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.1) 0%, rgba(144, 224, 239, 0.05) 100%), white;
  padding: 200px 0;
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

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

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

.hero p {
  font-size: 20px;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--primary-orange);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
}

.btn:hover {
  background-color: #e88a4b;
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(244, 162, 97, 0.4);
}

.grid-2 {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
  margin-bottom: 140px;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 80px;
  }
}

.grid-2.reversed {
  grid-template-columns: 45% 55%;
}

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

.grid-2 img,
.grid-2.reversed img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

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

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

.card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-orange);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.card h3 {
  color: var(--navy);
  font-size: 20px;
}

.card p {
  font-size: 16px;
}

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

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

.blog-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

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

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

.blog-card h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 0.75rem;
}

.blog-card p {
  font-size: 15px;
  margin-bottom: 1rem;
}

.blog-card a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-card a:hover {
  color: var(--navy);
}

.accordion {
  margin: 2rem 0;
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-bottom: none;
  background-color: white;
  margin-bottom: 0;
}

.accordion-item:last-child {
  border-bottom: 1px solid var(--border-light);
}

.accordion-button {
  background-color: white;
  border: none;
  color: var(--text-dark);
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-button:hover {
  background-color: rgba(244, 162, 97, 0.05);
}

.accordion-button.active {
  color: var(--primary-orange);
}

.accordion-button::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
}

.accordion-button.active::after {
  content: '−';
}

.accordion-content {
  display: none;
  padding: 1.5rem;
  background-color: rgba(144, 224, 239, 0.02);
  color: var(--text-light);
  line-height: 1.75;
}

.accordion-content.show {
  display: block;
}

footer {
  background-color: var(--navy);
  color: white;
  padding: 60px 0 30px;
  margin-top: 140px;
}

@media (max-width: 768px) {
  footer {
    margin-top: 80px;
    padding: 40px 0 20px;
  }
}

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

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

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 1rem;
  color: var(--primary-orange);
}

.footer-section p, .footer-section a {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-orange);
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 13px;
  color: #999;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.disclaimer {
  background-color: rgba(144, 224, 239, 0.1);
  border-left: 4px solid var(--sky-blue);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer h4 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 16px;
}

.disclaimer p {
  font-size: 15px;
  margin: 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--navy);
  color: white;
  padding: 20px;
  z-index: 2000;
  border-top: 4px solid var(--primary-orange);
  max-width: 100%;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 768px) {
  .cookie-content {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

.cookie-btn-reject {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

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

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

.cookie-btn-learn:hover {
  background-color: rgba(244, 162, 97, 0.1);
}

.highlight-section {
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.08) 0%, rgba(144, 224, 239, 0.08) 100%);
  padding: 4rem;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .highlight-section {
    padding: 2rem;
  }
}

.highlight-section h2 {
  color: var(--navy);
}

.highlight-section p {
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 14px;
}

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

.breadcrumb a:hover {
  color: var(--navy);
}

.breadcrumb span {
  color: var(--text-light);
  margin: 0 0.5rem;
}

.hidden {
  display: none;
}
