:root {
  --primary-red: #E63946;
  --primary-blue: #1D3557;
  --accent-yellow: #F4A261;
  --accent-green: #2A9D8F;
  --light-gray: #F1FAEE;
  --dark-gray: #333333;
}

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

        html,
        body {
            max-width: 100%;
            overflow-x: clip
        }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light-gray);
  color: var(--dark-gray);
  overflow-x: hidden;
}

main {
  min-height: 100vh;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

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

p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: var(--primary-red);
  border: none;
  padding: 15px 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.constructivism-bg {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
  position: relative;
}

.constructivism-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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='%23ffffff' fill-opacity='0.05'%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");
}

.geometric-shape {
  position: absolute;
  opacity: 0.1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--accent-yellow);
  top: 10%;
  right: 5%;
  transform: rotate(45deg);
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--accent-green);
  bottom: 20%;
  left: 10%;
  border-radius: 50%;
}

.shape-3 {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid var(--primary-red);
  top: 50%;
  right: 15%;
}

.card {
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.card-header {
  background-color: var(--primary-blue);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}

.decorative-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-yellow));
  margin: 20px 0;
}

.price-card {
  border: 3px solid var(--primary-blue);
  padding: 30px;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: var(--primary-red);
  background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}

.price-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-red);
  color: white;
  padding: 5px 20px;
  font-weight: 700;
  font-size: 0.8rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-red);
  margin: 20px 0;
}

.process-step {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.team-member {
  text-align: center;
  padding: 30px;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--primary-red);
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  background: var(--light-gray);
  padding: 20px;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e8e8e8;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
}

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

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.review-card {
  background: white;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.review-stars {
  color: #FFD700;
  font-size: 1.2rem;
}

.partner-logo {
  width: 100%;
  height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.category-card {
  background: white;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

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

.program-card {
  background: white;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: 100%;
  transition: all 0.3s ease;
}

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

.program-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

.program-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.program-features li {
  padding: 8px 0;
  color: #666;
}

.program-features li i {
  color: var(--accent-green);
  margin-right: 10px;
}

.brand-item {
  padding: 20px;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-item {
  padding: 30px;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: 100%;
}

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

.stat-label {
  font-size: 1.1rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-blue);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--accent-green);
  color: white;
  padding: 20px 30px;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  z-index: 10000;
  display: none;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification.show {
  display: block;
}

.hero-section {
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 40px 0;
}

.hero-content h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 2rem;
}

.payments-section {
  background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
  padding: 60px 0;
}

.payment-method {
  text-align: center;
  padding: 30px;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: 100%;
}

.payment-method i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}

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

.contact-info-item i {
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 1.2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}

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

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

table th {
  background: var(--primary-blue);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}

table tr:nth-child(even) {
  background: var(--light-gray);
}

table tr:hover {
  background: #e8e8e8;
}

.blog-card {
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

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

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

.blog-card-content {
  padding: 30px;
}

.blog-card h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.blog-meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 40px 0;
  }
  
  .hero-section {
    height: 400px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
}
