
:root {
  --primary-dark: #121212;
  --secondary-dark: #1a1a1a;
  --text-light: #f5f5f5;
  --text-muted: #b0b0b0;
  --accent-color: #e63946;
  --secondary-accent: #457b9d;
  --border-color: #333333;
  --card-bg: #1e1e1e;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Spectral', serif;
  font-weight: 500;
  margin-top: 0;
}

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

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

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

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn:hover, .btn:focus {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.btn-secondary {
  border-color: var(--secondary-accent);
}

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

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

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


header {
  background-color: var(--secondary-dark);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  height: 40px;
  width: 200px;
}

.logo svg {
  height: 100%;
}

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

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

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

nav ul li a {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
}

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

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


.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-dark);
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

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

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-dark) 0%, rgba(18, 18, 18, 0.7) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}


.diagonal-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.diagonal-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: inherit;
  transform: skewY(-3deg);
  transform-origin: top right;
  z-index: -1;
}

.diagonal-section:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: inherit;
  transform: skewY(3deg);
  transform-origin: bottom left;
  z-index: -1;
}

.diagonal-section-alt {
  background-color: var(--secondary-dark);
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.diagonal-section-alt:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: inherit;
  transform: skewY(3deg);
  transform-origin: top left;
  z-index: -1;
}

.diagonal-section-alt:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-color: inherit;
  transform: skewY(-3deg);
  transform-origin: bottom right;
  z-index: -1;
}


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

.feature-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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


.testimonial {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 30px;
  position: relative;
}

.testimonial:before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  position: absolute;
  top: -20px;
  left: 10px;
  color: var(--accent-color);
  opacity: 0.2;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--accent-color);
}


.gallery {
  margin-top: 50px;
}

.gallery-grid {
  margin: 0 -10px;
}

.gallery-item {
  width: calc(33.333% - 20px);
  margin: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}


.contact-form {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: 5px;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--primary-dark);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  border-radius: 3px;
  font-family: 'Karla', sans-serif;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-color);
  outline: none;
}

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

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

.form-check-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.iti {
  width: 100%;
}


.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.faq-question {
  font-weight: 700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: transform 0.3s ease;
}

.faq-question.active:after {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-top: 10px;
}

.faq-answer.show {
  display: block;
}


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

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

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-contact {
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--accent-color);
}

.footer-links h4 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

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

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}


.calculator {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 5px;
  max-width: 600px;
  margin: 0 auto;
}

.calculator-result {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--primary-dark);
  border-radius: 5px;
  display: none;
}

.result-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}


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

.article-card {
  background-color: var(--card-bg);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-10px);
}

.article-image {
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.article-content {
  padding: 20px;
}

.article-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}


.article-header {
  margin-bottom: 40px;
}

.article-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.article-date {
  font-size: 1rem;
  color: var(--text-muted);
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-body p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-body h2 {
  margin-top: 50px;
  margin-bottom: 20px;
}

.article-body h3 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.article-body ul, .article-body ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 20px;
  margin-left: 0;
  margin-bottom: 25px;
  font-style: italic;
  color: var(--text-muted);
}


.program-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.program-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.program-title {
  margin: 0;
}

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

.program-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex-grow: 1;
}

.program-features li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.program-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 2px;
}


.stats-container {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-muted);
}


.thank-you {
  text-align: center;
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--card-bg);
  padding: 20px;
  z-index: 999;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.cookie-settings {
  background-color: var(--primary-dark);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings:hover {
  background-color: var(--secondary-dark);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: none;
}

.cookie-modal-content {
  background-color: var(--card-bg);
  max-width: 600px;
  width: 100%;
  border-radius: 5px;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-title {
  margin: 0;
  font-size: 1.5rem;
}

.cookie-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-close:hover {
  color: var(--accent-color);
}

.cookie-modal-body {
  padding: 20px;
}

.cookie-category {
  margin-bottom: 30px;
}

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

.cookie-category-title {
  margin: 0;
  font-size: 1.2rem;
}

.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: var(--primary-dark);
  transition: .4s;
  border-radius: 34px;
}

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

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

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

.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}


.map-container {
  height: 400px;
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


@media (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0;
  }
  
  .hero-image, .hero-overlay {
    width: 100%;
    clip-path: none;
    opacity: 0.3;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .diagonal-section, .diagonal-section-alt {
    padding: 80px 0;
  }
  
  .stat-item {
    flex-basis: 50%;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  header {
    padding: 10px 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--secondary-dark);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 0 0 15px;
  }
  
  nav ul li:last-child {
    margin-bottom: 0;
  }
  
  .gallery-item {
    width: calc(50% - 20px);
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    width: calc(100% - 20px);
  }
  
  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
  
  .stat-item {
    flex-basis: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .cookie-settings, .cookie-accept {
    flex: 1;
  }
}