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

:root {
  --primary: #1A5276;
  --secondary: #D4AC0D;
  --accent: #E74C3C;
  --background: #F9F3E9;
  --text: #2C3E50;
  --watercolor-blue: #B3E0F2;
  --watercolor-peach: #FAD7A0;
  --watercolor-lavender: #D2B4DE;
  --watercolor-mint: #A3E4D7;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}

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

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

a:hover, a:focus {
  color: var(--accent);
  text-decoration: underline;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

button, .btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
}

button:hover, .btn:hover,
button:focus, .btn:focus {
  background-color: var(--accent);
  color: white;
  text-decoration: none;
}

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

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #c09b0c;
  color: var(--text);
}

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

.section {
  padding: 80px 0;
  position: relative;
}

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

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
}


.watercolor-bg {
  position: relative;
  overflow: hidden;
}

.watercolor-bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, var(--watercolor-blue) 0%, transparent 40%),
              radial-gradient(circle at 70% 20%, var(--watercolor-peach) 0%, transparent 35%),
              radial-gradient(circle at 50% 80%, var(--watercolor-lavender) 0%, transparent 45%);
  opacity: 0.15;
  z-index: -1;
}


header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

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

.logo {
  height: 50px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  width: 200px;
}

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

nav li {
  position: relative;
  margin-left: 30px;
}

nav a {
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

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

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


.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  transform: translateX(-50%);
  left: 50%;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

nav li:hover .mega-menu, nav li:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.mega-menu-column {
  padding: 20px;
}

.mega-menu-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 1.1rem;
}

.mega-menu-list {
  list-style: none;
}

.mega-menu-list li {
  margin: 10px 0;
  margin-left: 0;
}

.mega-menu-list a {
  color: var(--text);
  font-weight: 400;
  transition: var(--transition);
}

.mega-menu-list a:hover, .mega-menu-list a:focus {
  color: var(--accent);
}

.mega-menu-image {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  height: 150px;
  object-fit: cover;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  padding: 10px;
}


.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  margin-top: 80px;
  position: relative;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.6));
  z-index: 1;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

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


.features {
  background-color: white;
}

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

.feature-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
  padding: 30px;
  transition: var(--transition);
}

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

.feature-icon {
  color: var(--secondary);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}


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

.course-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: var(--transition);
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow);
}

.course-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.course-content {
  padding: 25px;
}

.course-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.course-description {
  margin-bottom: 20px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #777;
}


.strategies-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.strategies-table th, .strategies-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.strategies-table th {
  background-color: var(--primary);
  color: white;
}

.strategies-table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

.strategies-table tr:hover {
  background-color: rgba(0, 0, 0, 0.05);
}


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

.psychology-card {
  padding: 30px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 5px 15px var(--shadow);
}

.psychology-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}


.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow);
}

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

.faq-question:after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary);
}

.faq-answer {
  background-color: #f9f9f9;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-question:after {
  content: '\f106';
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}


.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
}

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

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

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.2);
}

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

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

.form-checkbox input {
  margin-top: 5px;
  margin-right: 10px;
}

.form-submit {
  width: 100%;
  font-size: 1.1rem;
}


.thank-you {
  text-align: center;
  padding: 100px 0;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--secondary);
  margin-bottom: 30px;
}


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

footer a {
  color: white;
}

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

.footer-column h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
}

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

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

.footer-links a:hover, .footer-links a:focus {
  color: white;
}

.footer-contact p {
  margin-bottom: 10px;
}

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


.breadcrumbs {
  background-color: #f5f5f5;
  padding: 15px 0;
  margin-top: 80px;
}

.breadcrumbs-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
}

.breadcrumbs-item:not(:last-child):after {
  content: '/';
  margin: 0 10px;
  color: #999;
}

.breadcrumbs-link {
  color: #666;
}

.breadcrumbs-current {
  color: var(--primary);
  font-weight: 500;
}


.page-header {
  padding: 100px 0 50px;
  background-color: var(--watercolor-blue);
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 80px;
}

.page-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}


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

.approach-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
}

.approach-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.approach-content {
  padding: 30px;
}

.approach-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}


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

.trajectory-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: var(--transition);
}

.trajectory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow);
}

.trajectory-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.trajectory-content {
  padding: 30px;
}

.trajectory-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.trajectory-description {
  margin-bottom: 20px;
}


.trajectory-steps {
  counter-reset: step;
  max-width: 800px;
  margin: 0 auto;
}

.trajectory-step {
  position: relative;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
  margin-bottom: 40px;
  padding-left: 80px;
}

.trajectory-step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.trajectory-step-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}


.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 15px;
  min-width: 30px;
}

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

.contact-map iframe, .contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}


.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
}

.policy-content h2 {
  margin-top: 40px;
}

.policy-content h3 {
  margin-top: 30px;
}

.policy-content ul, .policy-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 10px;
}

.policy-date {
  margin-bottom: 30px;
  color: #777;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

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

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

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

.cookie-settings-btn {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background-color: rgba(26, 82, 118, 0.1);
  color: var(--primary);
}

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

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: white;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #777;
  cursor: pointer;
  padding: 0;
}

.cookie-modal-title {
  margin-bottom: 20px;
  padding-right: 30px;
}

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

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

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

.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: #ccc;
  transition: var(--transition);
  border-radius: 24px;
}

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

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

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

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

.cookie-modal-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover, .back-to-top:focus {
  background-color: var(--accent);
}


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

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

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

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

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

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


.iti {
  width: 100%;
}


@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  .logo {
    height: 40px;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  nav ul {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  nav.active ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  nav li {
    margin: 0;
    width: 100%;
    padding: 0 20px;
  }
  
  nav a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
  
  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    padding: 0;
    display: none;
    grid-template-columns: 1fr;
  }
  
  .mega-menu-container {
    grid-template-columns: 1fr;
    padding: 0;
  }
  
  .mega-menu-column {
    padding: 10px 0;
  }
  
  .mega-menu-image {
    display: none;
  }
  
  nav li.has-dropdown > a:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
  }
  
  nav li.has-dropdown.active > a:after {
    content: '\f106';
  }
  
  nav li.has-dropdown.active .mega-menu {
    display: block;
  }
  
  .hero {
    min-height: 500px;
    margin-top: 70px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .page-header {
    padding: 80px 0 40px;
    margin-top: 70px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .breadcrumbs {
    margin-top: 70px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-actions button {
    width: 100%;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}