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

body {
  font-family: 'Rubik', sans-serif;
  color: #333F4D;
  line-height: 1.6;
  background-color: #F5F7FA;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a365d' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1A365D;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  border-bottom: 2px solid #E4A951;
  padding-bottom: 0.5rem;
  display: inline-block;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: #1A365D;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E4A951;
}

.text-muted {
  color: #6c757d;
}


.site-header {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.headroom--pinned {
  transform: translateY(0%);
}

.headroom--unpinned {
  transform: translateY(-100%);
}

.site-header .uk-navbar-container {
  background: transparent;
}

.site-nav {
  font-weight: 500;
}

.site-nav .uk-navbar-nav > li > a {
  color: #1A365D;
  font-size: 1rem;
  min-height: 70px;
  text-transform: none;
}

.site-nav .uk-navbar-nav > li > a:hover, 
.site-nav .uk-navbar-nav > li.uk-active > a {
  color: #E4A951;
}

.nav-cta {
  background-color: #1A365D;
  color: white !important;
  padding: 8px 16px;
  border-radius: 4px;
  margin-left: 15px;
  transition: background-color 0.3s ease;
}

.nav-cta:hover {
  background-color: #0D2B4B;
  color: white !important;
}


.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(245, 247, 250, 0.8);
}

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

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

@media (max-width: 960px) {
  .hero-background {
    width: 100%;
    opacity: 0.2;
  }
  .hero-section {
    background: rgba(245, 247, 250, 0.9);
  }
}


.btn-primary {
  background-color: #1A365D;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #0D2B4B;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-secondary {
  background-color: #E4A951;
  color: #1A365D;
  padding: 12px 30px;
  border-radius: 4px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #d29a45;
  color: #1A365D;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-outlined {
  background-color: transparent;
  color: #1A365D;
  border: 2px solid #1A365D;
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-outlined:hover {
  background-color: #1A365D;
  color: white;
  transform: translateY(-2px);
}


.benefit-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.benefit-card-content {
  padding: 20px;
}

.program-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-top: 4px solid #1A365D;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.program-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.program-card-content {
  padding: 20px;
}

.program-card-title {
  color: #1A365D;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.program-card-duration {
  color: #E4A951;
  font-weight: 500;
  margin-bottom: 15px;
}

.approach-step {
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  position: relative;
}

.approach-step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background-color: #E4A951;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}


.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
  font-size: 1.1rem;
}

.bg-light {
  background-color: #F5F7FA;
}

.bg-primary {
  background-color: #1A365D;
  color: white;
}

.bg-primary h2, .bg-primary h3 {
  color: white;
}

.bg-primary h2 {
  border-color: #E4A951;
}

.bg-accent {
  background-color: #D1E2ED;
}


.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background-color: white;
  cursor: pointer;
  padding: 15px 20px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #F5F7FA;
}

.faq-question .icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 20px;
  background-color: #F5F7FA;
}


.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-family: 'Rubik', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #1A365D;
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 5px;
  margin-right: 10px;
}


.site-footer {
  background-color: #1A365D;
  color: white;
  padding: 50px 0 20px;
}

.footer-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.site-footer a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #E4A951;
  text-decoration: none;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 15px;
}

.footer-contact-icon {
  margin-right: 10px;
  color: #E4A951;
  min-width: 20px;
  text-align: center;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A365D;
  color: white;
  padding: 15px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1;
  margin-right: 20px;
  margin-bottom: 10px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.cookie-accept {
  background-color: #E4A951;
  color: #1A365D;
}

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

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

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

.cookie-settings {
  background-color: transparent;
  color: white;
  text-decoration: underline;
}

.cookie-settings:hover {
  text-decoration: none;
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cookie-modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-close {
  color: #333F4D;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cookie-close:hover {
  color: #E4A951;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

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

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

.cookie-category-title {
  font-weight: 500;
  font-size: 1.1rem;
  color: #1A365D;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #4A7C59;
}

input:focus + .cookie-slider {
  box-shadow: 0 0 1px #4A7C59;
}

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

.cookie-category-description {
  color: #6c757d;
  font-size: 0.9rem;
}

.cookie-modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-settings-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1A365D;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  z-index: 9998;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings-link:hover {
  background-color: #0D2B4B;
}


.text-primary {
  color: #1A365D !important;
}

.text-accent {
  color: #E4A951 !important;
}

.bg-white {
  background-color: white;
}

.rounded {
  border-radius: 8px;
}

.shadow {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }


@media (max-width: 960px) {
  .section {
    padding: 60px 0;
  }
  
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 40px 0;
  }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  
  .hero-section {
    min-height: 60vh;
  }
}


.iti { width: 100% }