
:root {
  --primary-color: #2C3E50;
  --accent-color: #E67E22;
  --secondary-accent: #3498DB;
  --background-color: #F5F5F5;
  --text-color: #333333;
  --gray-color: #95A5A6;
  --white-color: #FFFFFF;
  --highlight-color: #ECF0F1;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

.bg-texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: -1;
  pointer-events: none;
}

.three-bg {
  position: absolute;
}


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

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

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 10px;
}

h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
}

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

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

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

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

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

.section-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}


.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
}

section {
  padding: 7rem 0;
}

.section-padding-large {
  padding: 7rem 0;
}

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

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

.col {
  flex: 1;
  padding: 0 15px;
}


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

.top-bar {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 5px 0;
  font-size: 0.85rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info a {
  color: var(--white-color);
  margin-right: 20px;
}

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

.contact-info i {
  margin-right: 5px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 50px;
}

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

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

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

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

nav ul li a:hover:after,
nav ul li a.active:after {
  width: 100%;
}


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

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(44, 62, 80, 0.9) 0%, rgba(44, 62, 80, 0.7) 100%);
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white-color);
}

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


.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

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

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

.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
}


.card {
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  margin-bottom: 30px;
  transition: var(--transition);
}

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

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

.card-content {
  padding: 25px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.card-text {
  margin-bottom: 20px;
}


.features {
  background-color: var(--white-color);
}

.feature {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 40px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-color);
  font-size: 2rem;
}


.course {
  margin-bottom: 50px;
}

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.course-price {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: 700;
}

.course-details {
  background-color: var(--highlight-color);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.course-details h4 {
  margin-bottom: 15px;
}

.course-details ul {
  padding-left: 20px;
}

.course-details li {
  margin-bottom: 10px;
}


.stage {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}

.stage-number {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 2rem;
  font-weight: 700;
  margin-right: 30px;
}

.stage-content {
  flex: 1;
}


.contact-form {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.2);
}

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

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

.form-check-input {
  margin-right: 10px;
  margin-top: 4px;
}


.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}


footer {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 50px 0 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding-right: 30px;
}

.footer-col h3 {
  color: var(--white-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

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

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

.footer-col ul li a {
  color: #bdc3c7;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  margin-top: 30px;
}


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

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

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

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
}

.cookie-buttons button {
  margin-left: 10px;
  margin-bottom: 10px;
}

.cookie-settings-btn {
  background-color: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

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

.cookie-accept-btn {
  background-color: var(--accent-color);
  border: none;
  color: var(--white-color);
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

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

.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);
}

.cookie-modal-content {
  background-color: var(--white-color);
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
}

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

.cookie-modal-header h3 {
  margin: 0;
}

.cookie-close {
  color: var(--text-color);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

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

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

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

.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: var(--accent-color);
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

.cookie-save-btn {
  background-color: var(--accent-color);
  border: none;
  color: var(--white-color);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-save-btn:hover {
  background-color: #d35400;
}


@media (max-width: 991px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .stage {
    flex-direction: column;
  }
  
  .stage-number {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white-color);
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav ul li {
    margin: 0 0 15px 0;
  }
  
  nav ul li a {
    display: block;
    padding: 10px 0;
  }
  
  .hero {
    height: auto;
    padding: 100px 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .col {
    flex: 0 0 100%;
  }
  
  .course-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .course-price {
    margin-top: 10px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .cookie-buttons button {
    margin: 5px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  
  .top-bar-content {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info a {
    display: block;
    margin: 5px 0;
  }
  
  .header-content {
    padding: 10px 0;
  }
  
  .logo {
    height: 40px;
  }
}


.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;
}

.py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.text-white {
  color: var(--white-color) !important;
}

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

.bg-accent {
  background-color: var(--accent-color) !important;
}

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

.bg-white {
  background-color: var(--white-color) !important;
}

.shadow {
  box-shadow: var(--box-shadow) !important;
}

.rounded {
  border-radius: 8px !important;
}


.iti {
  width: 100%;
}