
:root {
  --primary: #3D5A80;
  --secondary: #98C1D9;
  --accent: #EE6C4D;
  --bg-color: #F7F9FB;
  --text-color: #293241;
  --highlight: #E0FBFC;
  --button-color: #EE6C4D;
  --footer-color: #293241;
  --border-radius: 10px;
  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Epilogue', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.hand-drawn {
  position: relative;
}

.hand-drawn::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}


.doodle-line {
  position: relative;
}

.doodle-line::after {
  content: '';
  position: absolute;
  height: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 1'%3E%3Cpath d='M0,0.5 C20,0.8 30,0.2 50,0.5 C70,0.8 80,0.2 100,0.5' stroke='%23EE6C4D' fill='none' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.doodle-circle {
  position: relative;
}

.doodle-circle::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='48' stroke='%233D5A80' fill='none' stroke-width='1' stroke-dasharray='2,2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-top: 0;
  position: relative;
}

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

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

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

p {
  margin-bottom: 1.5rem;
  font-weight: 300;
}

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

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


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

.section-padding {
  padding: 4rem 0;
}

@media (max-width: 640px) {
  .section-padding {
    padding: 2.5rem 0;
  }
}


.uk-navbar-container {
  background-color: var(--bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.uk-navbar > .uk-container {
  display: flex;
  flex-direction: row;
}

.uk-navbar-nav > li > a {
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  color: var(--text-color);
  position: relative;
}

.uk-navbar-nav > li:hover > a, 
.uk-navbar-nav > li.uk-active > a {
  color: var(--accent);
}

.uk-navbar-nav > li > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 15px;
  left: 15px;
  background-color: var(--accent);
  transition: var(--transition);
}

.uk-navbar-nav > li:hover > a::after,
.uk-navbar-nav > li.uk-active > a::after {
  width: calc(100% - 30px);
}

.uk-navbar-dropdown {
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
}

.uk-navbar-dropdown-nav > li > a {
  color: var(--text-color);
  font-size: 0.9rem;
  padding: 8px 15px;
}

.uk-navbar-dropdown-nav > li > a:hover {
  color: var(--accent);
  background-color: var(--highlight);
  border-radius: var(--border-radius);
}

.uk-navbar-toggle {
  color: var(--text-color);
}

.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus {
  color: var(--accent);
}


.hero-section {
  position: relative;
  background-color: var(--highlight);
  padding: 5rem 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
  height: auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

@media (max-width: 960px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}


.card-custom {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.card-image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card-custom:hover .card-image {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card-text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}


.btn-primary {
  background-color: var(--button-color);
  color: white;
  border-radius: var(--border-radius);
  padding: 10px 20px;
  font-weight: 500;
  border: none;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #d55c3e;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--border-radius);
  padding: 8px 18px;
  font-weight: 500;
  transition: var(--transition);
}

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


.form-custom .uk-input,
.form-custom .uk-textarea,
.form-custom .uk-select {
  border-radius: var(--border-radius);
  border: 1px solid #ddd;
  transition: var(--transition);
}

.form-custom .uk-input:focus,
.form-custom .uk-textarea:focus,
.form-custom .uk-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(61, 90, 128, 0.2);
}

.form-custom .uk-checkbox,
.form-custom .uk-radio {
  border: 1px solid #ddd;
}

.form-custom .uk-checkbox:checked,
.form-custom .uk-radio:checked {
  background-color: var(--primary);
}

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


.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 3;
}


.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 0.95rem;
  margin-bottom: 0;
}


.testimonial-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: #6c757d;
}


.about-image {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.25rem;
}


.cta-section {
  background-color: var(--primary);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-cta {
  background-color: white;
  color: var(--primary);
  border-radius: var(--border-radius);
  padding: 12px 30px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-cta:hover {
  background-color: var(--highlight);
  color: var(--primary);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
}


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

.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}


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

.cookie-consent.visible {
  display: block;
}

.cookie-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.cookie-text {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.cookie-buttons .uk-button {
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}

.cookie-settings {
  display: none;
  margin-top: 1.5rem;
}

.cookie-settings.visible {
  display: block;
}

.cookie-category {
  margin-bottom: 1.25rem;
}

.cookie-category-title {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.cookie-category-desc {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}


.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-highlight {
  background-color: var(--highlight);
}

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

.text-accent {
  color: var(--accent);
}

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

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

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

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

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


@media (max-width: 960px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .uk-container {
    padding: 0 1.5rem;
  }
}