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


:root {
  --primary-blue: #1E5F8C;
  --primary-teal: #45B5AA;
  --secondary-orange: #F6913D;
  --secondary-yellow: #FFD166;
  --neutral-light: #F5F7FA;
  --neutral-medium: #C9D1D9;
  --neutral-dark: #4A5568;
  --neutral-black: #2D3748;
  --bg-white: #FFFFFF;
  --bg-blue-light: #EBF8FF;
  --bg-teal-light: #E6FFFA;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.05);
  --transition: all 0.3s ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}


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

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--neutral-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--neutral-black);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-teal);
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


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


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  height: 60px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: 2rem;
}

.main-nav a {
  color: var(--neutral-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-teal);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--primary-blue);
}


.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-top: 80px;
  background-color: var(--bg-blue-light);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

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

.btn-secondary:hover {
  background-color: var(--secondary-yellow);
  color: var(--neutral-dark);
}

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

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


.floating-module {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 2rem 0;
  padding: 2rem;
  transform: translateY(0);
  transition: var(--transition);
}

.floating-module:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15), 0 10px 15px rgba(0,0,0,0.08);
}


.features {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.feature-title {
  margin-bottom: 1rem;
}


.news {
  padding: 5rem 0;
  background-color: var(--bg-blue-light);
}

.news-slider {
  overflow: hidden;
  position: relative;
}

.news-slide {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.news-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.news-content {
  flex: 1;
}

.news-date {
  color: var(--neutral-dark);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}


.faq {
  padding: 5rem 0;
}

.accordion {
  margin-top: 2rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-header {
  background-color: var(--neutral-light);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.accordion-icon {
  transition: var(--transition);
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-content-inner {
  padding: 1rem;
}

.accordion-item.active .accordion-content {
  display: block;
  max-height: 500px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}


.contact-form {
  padding: 5rem 0;
  background-color: var(--bg-teal-light);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--neutral-medium);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 95, 140, 0.2);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}


.site-footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-nav h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: var(--neutral-medium);
}

.footer-nav a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 0.75rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--primary-teal);
}

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

.footer-bottom a {
  color: white;
}


.about-hero {
  padding: 5rem 0;
  background-color: var(--bg-blue-light);
  margin-top: 80px;
}

.team-section {
  padding: 5rem 0;
}

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

.team-member {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.team-member-name {
  margin-bottom: 0.5rem;
}

.team-member-position {
  color: var(--primary-teal);
  margin-bottom: 1rem;
}


.map-section {
  padding: 5rem 0;
  background-color: var(--bg-teal-light);
}

.map-container {
  height: 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
}


.setup-guides {
  padding: 5rem 0;
  margin-top: 80px;
}

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

.guide-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.guide-image {
  height: 200px;
  object-fit: cover;
}

.guide-content {
  padding: 1.5rem;
}

.guide-steps {
  margin-top: 2rem;
}

.step {
  display: flex;
  margin-bottom: 1.5rem;
}

.step-number {
  background-color: var(--primary-blue);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}


.articles {
  padding: 5rem 0;
  margin-top: 80px;
}

.article-card {
  margin-bottom: 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.article-image {
  height: 250px;
  object-fit: cover;
}

.article-content {
  padding: 2rem;
}

.article-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--neutral-dark);
}

.article-date {
  margin-right: 1rem;
}

.article-category {
  background-color: var(--primary-teal);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}


.contact-page {
  margin-top: 80px;
  padding: 5rem 0;
}

.contact-info {
  margin-bottom: 3rem;
}

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

.contact-method {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.contact-map {
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 3rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--neutral-black);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

.cookie-settings-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-settings-content {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--neutral-medium);
}

.cookie-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-medium);
  transition: var(--transition);
  border-radius: 34px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--primary-teal);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(26px);
}

.cookie-settings-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}


.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem;
  margin-top: 80px;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--primary-teal);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-message {
  max-width: 600px;
  margin-bottom: 2rem;
}


.page-navigation {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
}

.page-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.policy-page {
  margin-top: 80px;
  padding: 5rem 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  margin-bottom: 1.5rem;
}

.policy-section h3 {
  margin-bottom: 1rem;
}


.iti {
  width: 100%;
}


@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image {
    opacity: 0.3;
    width: 100%;
  }
  
  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .site-header .container {
    height: 70px;
  }
  
  .logo {
    height: 50px;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
  }
  
  .main-nav.active {
    max-height: 500px;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
  }
  
  .main-nav li {
    margin: 0 0 1rem 0;
  }
  
  .hero {
    height: auto;
    min-height: 500px;
    padding: 4rem 0;
    margin-top: 70px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .features-grid,
  .team-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }
  
  .news-slide {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .floating-module {
    padding: 1.5rem;
  }
  
  .feature-card,
  .team-member,
  .guide-card,
  .article-content {
    padding: 1.5rem;
  }
  
  .contact-method {
    padding: 1.5rem;
  }
  
  .cookie-settings-content {
    padding: 1.5rem;
  }
}


.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

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


.column {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}


.small-12 {
  width: 100%;
}

.small-6 {
  width: 50%;
}

.small-4 {
  width: 33.333333%;
}

.small-3 {
  width: 25%;
}


@media (min-width: 640px) {
  .medium-6 {
    width: 50%;
  }
  
  .medium-4 {
    width: 33.333333%;
  }
  
  .medium-3 {
    width: 25%;
  }
}


@media (min-width: 1024px) {
  .large-6 {
    width: 50%;
  }
  
  .large-4 {
    width: 33.333333%;
  }
  
  .large-3 {
    width: 25%;
  }
}


.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}