/* ===== RESET AND BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
  --primary-color: #7c3aed;
  --background-color: #ffffff;
  --text-color: #111827;
  --secondary-color: #ede9fe;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(124, 58, 237, 0.1);
  --transition: all 0.3s ease;
  --container-max-width: 1200px;
  --header-height: 80px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #5b21b6;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #5b21b6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* ===== HEADER ===== */
.header {
  background-color: var(--background-color);
  box-shadow: var(--box-shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo h1 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.8rem;
}

.logo a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.logo a:hover {
  color: #5b21b6;
}

.navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

/* .nav-link::before {
    content: '';
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    transition: var(--transition);
} */
/*   
.nav-link[href="osnovy-veba.html"]::before {
     background-image: url('images/html-icon.svg'); 
     background-color: white;
}  

.nav-link[href="praktikum.html"]::before {
    background-image: url('images/practice-icon.svg');
    background-color: white;
}

.nav-link[href="proekty.html"]::before {
    background-image: url('images/rating-icon.svg');
    background-color: white;
}

.nav-link[href="o-nas.html"]::before {
    background-image: url('images/students-icon.svg');
    background-color:  white;
}

.nav-link[href="kontakty.html"]::before {
    background-image: url('images/phone-icon.svg');
    background-color: white;
} */

.nav-link.active {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.nav-link:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 37, 236, 0.2);
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
  transform: scale(1.1);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: var(--secondary-color);
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MAIN CONTENT ===== */
main {
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/hero-2.jpeg") no-repeat center center/cover;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/codeacademia.jpg") no-repeat center center/cover;
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
section {
  padding: 4rem 0;
}

.features {
  background-color: #f9fafb;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== FORMS ===== */
.registration,
.contact-form-container,
.course-registration,
.help-section,
.project-submission {
  background-color: var(--secondary-color);
  padding: 4rem 0;
}

.registration h2,
.contact-form-container h2,
.course-registration h2,
.help-section h2,
.project-submission h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.help-section p,
.project-submission p {
  text-align: center;
}

.registration-form,
.contact-form,
.submission-form,
.help-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

/* ===== TEAM SECTION ===== */
.team {
  padding: 4rem 0;
}

.team h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.member-position {
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.skill {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--text-color);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: none;
  max-width: 800px;
  width: calc(100% - 40px);
  border: 2px solid var(--primary-color);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
}

.cookie-popup .btn-primary {
  padding: 8px 16px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ===== COURSE CONTENT ===== */
.course-content,
.practice-content,
.projects-content,
.about-content,
.contact-content {
  padding: 2rem 0;
}

.course-modules,
.practice-categories {
  margin-bottom: 3rem;
}

.module,
.category {
  background: white;
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.module h2,
.category h2 {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  margin: 0;
}

.module-content,
.exercises {
  padding: 2rem;
}

.module-duration {
  margin-top: 1rem;
  padding: 0.5rem;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}

/* ===== EXERCISES ===== */
.exercise {
  background: #f9fafb;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.exercise h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.exercise-details {
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.exercise-btn,
.project-btn {
  margin-top: 1rem;
}

/* ===== PROJECTS ===== */
.project-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(124, 58, 237, 0.15);
}

.project-image {
  height: 200px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  padding: 1.5rem;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tech-tag {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.project-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.difficulty {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.75rem;
}

.difficulty.beginner {
  background-color: #d1fae5;
  color: #065f46;
}

.difficulty.intermediate {
  background-color: #fef3c7;
  color: #92400e;
}

.difficulty.advanced {
  background-color: #fee2e2;
  color: #991b1b;
}

.duration {
  color: #6b7280;
  font-weight: 500;
}

/* ===== CONTACT PAGE ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-items {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.social-links {
  margin-top: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
}

.social-link:hover svg path {
  fill: white;
}

/* ===== MAP ===== */
.map-section {
  margin: 3rem 0;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 1rem;
}

.map-info {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.map-info ul {
  list-style: none;
  margin-top: 1rem;
}

.map-info li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.map-info li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* ===== FAQ ===== */
.faq-section,
.faq-preview {
  margin: 3rem 0;
}

.faq-list,
.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: #ddd6fe;
}

.faq-question h3,
.faq-question h4 {
  margin: 0;
  color: var(--primary-color);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
  transition: var(--transition);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 900px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  padding: 2rem 0;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  line-height: 1.8;
}

.legal-document h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.legal-document h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
}

.legal-document ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-document li {
  margin-bottom: 0.5rem;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--secondary-color);
  font-size: 0.9rem;
  color: #6b7280;
}

.back-to-site {
  text-align: center;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== COOKIE TABLES ===== */
.cookie-table {
  margin: 1rem 0;
  overflow-x: auto;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* ===== COOKIE SETTINGS MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: var(--primary-color);
}

.close {
  font-size: 2rem;
  cursor: pointer;
  color: #6b7280;
  transition: var(--transition);
}

.close:hover {
  color: var(--primary-color);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: var(--border-radius);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.cookie-toggle input[type="checkbox"] {
  width: auto;
  margin: 0;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
  padding: 4rem 0;
  text-align: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
}

.thank-you-message h1 {
  color: var(--background-color);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.next-steps {
  margin: 3rem 0;
  text-align: left;
}

.next-steps h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.contact-reminder {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

.contact-methods {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.additional-resources {
  margin: 4rem 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resource-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: left;
}

.resource-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.resource-link {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: underline;
}

.social-proof {
  background: var(--secondary-color);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.stat-label {
  color: #f9fafb;
  font-weight: 500;
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.mission-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.mission-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.values-section {
  margin: 4rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.value-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.testimonials-section {
  background: #f9fafb;
  padding: 4rem 0;
  margin: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #4b5563;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  color: var(--primary-color);
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.contact-cta {
  text-align: center;
  background: var(--secondary-color);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
@media (max-width: 994px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(237, 233, 254, 0.98) 100%
    );
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 0.5rem;
    z-index: 1000;
    overflow-y: auto;
    animation: slideInFromTop 0.3s ease-out;
  }

  @keyframes slideInFromTop {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin-bottom: 0.5rem;
  }

  .nav-menu .nav-link {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .nav-menu .nav-link::before {
    width: 28px;
    height: 28px;
    opacity: 0.8;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
  }

  .nav-menu .nav-link:hover::before,
  .nav-menu .nav-link.active::before {
    /* filter: brightness(0) invert(1); */
    opacity: 1;
    transform: scale(1.2);
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .hero-buttons,
  .action-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .mission-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-stats {
    flex-direction: row;
    justify-content: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 1.5rem;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .cookie-popup {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 400px;
    bottom: 10px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .modal {
    padding: 10px;
  }

  .modal-footer {
    flex-direction: column;
  }

  .legal-document {
    padding: 2rem 1.5rem;
  }

  .cookie-table {
    font-size: 0.9rem;
  }

  .project-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .features-grid,
  .team-grid,
  .values-grid,
  .testimonials-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 1rem;
  }

  .back-to-site {
    flex-direction: column;
    align-items: center;
  }

  .project-filters {
    flex-direction: column;
    align-items: center;
  }

  /* Student Showcase Mobile Styles */
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .showcase-header h2 {
    font-size: 2rem;
  }

  .showcase-subtitle {
    font-size: 1rem;
  }

  .project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .project-rating {
    margin-left: 0;
  }

  .project-stats {
    flex-direction: column;
    gap: 0.75rem;
  }

  .showcase-content {
    padding: 1.5rem;
  }

  .student-showcase {
    padding: 2rem 0;
    margin: 2rem 0;
  }

  /* Enhanced Course Features Mobile Styles */
  .features-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-enhanced {
    padding: 2rem 1.5rem;
  }

  .features-header h2 {
    font-size: 2rem;
  }

  .features-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .feature-content h3 {
    font-size: 1.3rem;
  }

  .feature-description {
    font-size: 0.95rem;
  }

  .detail-item {
    margin-bottom: 0.5rem;
  }

  .detail-item span:last-child {
    font-size: 0.9rem;
  }

  .feature-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .feature-stats .stat {
    padding: 0.75rem;
  }

  .feature-stats .stat-number {
    font-size: 1.3rem;
  }

  .feature-stats .stat-label {
    font-size: 0.75rem;
  }

  /* Praktikum Page Mobile Styles */
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stories-header h2,
  .path-header h2,
  .events-header h2,
  .stats-header h2 {
    font-size: 2rem;
  }

  .stories-subtitle,
  .path-subtitle,
  .events-subtitle,
  .stats-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .story-card {
    padding: 1.5rem;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Timeline Mobile */
  .path-timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    margin-left: 0;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
    margin: 0 1rem 0 0;
    flex-shrink: 0;
  }

  .timeline-icon img {
    width: 30px;
    height: 30px;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-details {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Events Mobile */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-card.featured {
    transform: none;
  }

  .event-card.featured:hover {
    transform: translateY(-5px);
  }

  .event-content {
    padding: 1.5rem;
  }

  .event-content h3 {
    font-size: 1.2rem;
  }

  /* Statistics Mobile */
  .stats-infographic {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-block {
    padding: 1.5rem;
  }

  .stat-block .stat-number {
    font-size: 2rem;
  }

  /* Thank You Page Mobile Styles */
  .thank-you-hero {
    padding: 3rem 0;
  }

  .thank-you-message h1 {
    font-size: 2.2rem;
  }

  .thank-you-message .lead {
    font-size: 1.1rem;
  }

  .message-details {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline-step {
    padding: 1.5rem;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-method-card {
    padding: 1.5rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .action-buttons .btn-primary,
  .action-buttons .btn-secondary,
  .action-buttons .btn-outline {
    min-width: 250px;
  }

  /* About Page Contact Form Mobile Styles */
  .contact-form-container {
    margin: 0 1rem;
    border-radius: 16px;
  }

  .form-header {
    padding: 2rem 1.5rem;
  }

  .form-header h2 {
    font-size: 2rem;
  }

  .form-description {
    font-size: 1rem;
  }

  .form-benefits {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .form-wrapper {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info-sidebar {
    padding: 2rem 1.5rem;
  }

  .contact-method {
    padding: 1.25rem;
  }

  /* FAQ Section Mobile Styles */
  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .faq-container {
    margin: 0 1rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    flex-wrap: wrap;
  }

  .faq-question h4 {
    font-size: 1.1rem;
  }

  .question-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
  }

  .question-icon img {
    width: 20px;
    height: 20px;
  }

  .expand-icon {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .faq-answer p {
    font-size: 1rem;
  }

  .answer-details {
    padding: 1.25rem;
  }

  .detail-item {
    font-size: 0.9rem;
  }

  /* Course Modules Mobile Styles */
  .course-modules {
    gap: 2rem;
  }

  .module-header {
    padding: 2rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .module-icon {
    width: 70px;
    height: 70px;
  }

  .module-icon img {
    width: 40px;
    height: 40px;
  }

  .module-title h2 {
    font-size: 1.5rem;
  }

  .module-subtitle {
    font-size: 1rem;
  }

  .module-content {
    padding: 2rem 1.5rem;
  }

  .module-description {
    padding: 1.25rem;
  }

  .module-topics li {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .module-topics li:hover {
    transform: translateY(-5px);
  }

  .topic-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    align-self: center;
  }

  .topic-content h4 {
    font-size: 1.1rem;
  }

  .topic-content p {
    font-size: 0.9rem;
  }

  .module-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .module-duration,
  .module-level,
  .module-projects {
    padding: 1.25rem;
  }

  /* New Index Page Sections Mobile Styles */
  .methodology-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .methodology-header h2,
  .stories-header h2,
  .partners-header h2,
  .details-header h2,
  .faq-header h2 {
    font-size: 2rem;
  }

  .methodology-subtitle,
  .stories-subtitle,
  .partners-subtitle,
  .details-subtitle,
  .faq-subtitle {
    font-size: 1rem;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .story-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .student-avatar {
    width: 60px;
    height: 60px;
  }

  .partners-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .partner-stat {
    padding: 1.5rem;
  }

  .partner-stat .stat-number {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .detail-card {
    padding: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 1.25rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 1.25rem;
  }

  .learning-path {
    gap: 1rem;
  }

  .path-step {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .path-step:not(:last-child)::after {
    display: none;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .methodology-features {
    gap: 1rem;
  }

  .feature-item {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  /* Enhanced Index Page Mobile Styles */
  .hero-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  .hero-feature {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .hero-stats .stat-number {
    font-size: 2rem;
  }

  .features-header h2 {
    font-size: 2rem;
  }

  .features-subtitle {
    font-size: 1rem;
  }

  .feature-details {
    padding: 1rem;
  }

  .detail-item {
    font-size: 0.9rem;
  }

  .features-additional {
    margin-top: 3rem;
    padding: 2rem 0;
  }

  .additional-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-item {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .info-content h4 {
    font-size: 1.1rem;
  }

  .methodology-text {
    margin-bottom: 2rem;
  }

  .methodology-visual {
    width: 100%;
    overflow-x: hidden;
  }

  .learning-path {
    width: 100%;
    max-width: 100%;
  }

  .path-step {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .step-info {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .step-info h4 {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .step-info p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* ===== NEW SECTIONS STYLES ===== */
.statistics {
  background-color: #f9fafb;
  padding: 4rem 0;
}

.statistics h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.stat-icon {
  margin-bottom: 1rem;
}

.stat-icon img {
  width: 48px;
  height: 48px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #f9fafb;
  font-weight: 500;
}

.why-choose-us {
  padding: 4rem 0;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.advantage-item {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.advantage-icon {
  margin-bottom: 1.5rem;
}

.advantage-icon img {
  width: 48px;
  height: 48px;
}

.advantage-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.technologies {
  background-color: var(--secondary-color);
  padding: 4rem 0;
}

.technologies h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.tech-category {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.tech-category h3 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.tech-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  background: #f9fafb;
  transition: var(--transition);
}

.tech-item:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.tech-item img {
  width: 40px;
  height: 40px;
}

.tech-item span {
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.9rem;
}

/* Remove list bullets */
ul {
  list-style: none;
  padding-left: 0;
}

li {
  position: relative;
  /* padding-left: 1.5rem; */
}

li:before {
  /* content: '•'; */
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* ===== STUDENT SHOWCASE STYLES ===== */
.student-showcase {
  margin: 4rem 0;
  padding: 3rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, var(--secondary-color) 100%);
  border-radius: var(--border-radius);
}

.showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.showcase-header h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.showcase-subtitle {
  color: #6b7280;
  font-size: 1.2rem;
  margin: 0;
  font-style: italic;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.showcase-item {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.2);
}

.showcase-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.showcase-item:hover .showcase-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.8),
    rgba(91, 33, 182, 0.9)
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.showcase-item:hover .project-overlay {
  opacity: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-badge {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.showcase-content {
  padding: 2rem;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.project-header h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.4rem;
  flex: 1;
}

.project-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.rating-stars {
  color: #f59e0b;
  font-size: 1rem;
}

.rating-text {
  color: #6b7280;
  font-weight: 600;
  font-size: 0.9rem;
}

.student-info {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.student-name {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0.25rem 0;
}

.student-role {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-description {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.project-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.stat {
  text-align: center;
  flex: 1;
  padding: 1rem;
  background: #f9fafb;
  border-radius: var(--border-radius);
  border: 1px solid #e5e7eb;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: #f9fafb;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== ENHANCED COURSE FEATURES STYLES ===== */
.course-features {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    #f9fafb 0%,
    var(--secondary-color) 50%,
    #f9fafb 100%
  );
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.features-subtitle {
  color: #6b7280;
  font-size: 1.2rem;
  margin: 0;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-enhanced {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
  transition: var(--transition);
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.feature-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #5b21b6);
}

.feature-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-enhanced:hover .feature-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.feature-icon img {
  width: 32px;
  height: 32px;
  transition: var(--transition);
}

.feature-enhanced:hover .feature-icon img {
  /* filter: brightness(0) invert(1); */
}

.feature-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-description {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.feature-details {
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
}

.detail-icon {
  color: #10b981;
  font-weight: bold;
  font-size: 1.1rem;
  /* width: 30px; */
  flex-shrink: 0;
}

.detail-item span:last-child {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.4;
}

.feature-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.feature-stats .stat {
  text-align: center;
  padding: 1rem;
  background: #f9fafb;
  border-radius: var(--border-radius);
  border: 1px solid #e5e7eb;
  transition: var(--transition);
}

.feature-enhanced:hover .feature-stats .stat {
  background: var(--secondary-color);
  border-color: var(--primary-color);
}

.feature-stats .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.feature-stats .stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* ===== PRAKTIKUM PAGE STYLES ===== */

/* Success Stories Section */
.success-stories {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, var(--secondary-color) 100%);
}

.stories-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stories-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stories-subtitle {
  color: #6b7280;
  font-size: 1.2rem;
  margin: 0;
  font-style: italic;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.story-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #5b21b6);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
}

.story-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.story-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
}

.story-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.story-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.story-role {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.story-content blockquote {
  font-style: italic;
  color: #374151;
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--primary-color);
  line-height: 1.6;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.story-stats .stat-item {
  text-align: center;
}

.story-stats .stat-number {
  display: block;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.story-stats .stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.2;
}

/* Learning Path Timeline */
.learning-path {
  padding: 4rem 0;
  background: white;
}

.path-header {
  text-align: center;
  margin-bottom: 4rem;
}

.path-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.path-subtitle {
  color: #6b7280;
  font-size: 1.2rem;
  margin: 0;
  font-style: italic;
}

.path-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.path-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-color);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: white;
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin: 0 2rem;
}

.timeline-icon img {
  width: 40px;
  height: 40px;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
  border: 1px solid #e5e7eb;
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.timeline-content p {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.timeline-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.timeline-details .detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f9fafb;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #374151;
}

.detail-icon {
  font-size: 1rem;
}

/* Events Section */
.events-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f9fafb 100%);
}

.events-header {
  text-align: center;
  margin-bottom: 3rem;
}

.events-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.events-subtitle {
  color: #6b7280;
  font-size: 1.2rem;
  margin: 0;
  font-style: italic;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.02);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
}

.event-card.featured:hover {
  transform: translateY(-5px) scale(1.02);
}

.event-date {
  background: var(--primary-color);
  color: white;
  padding: 1rem;
  text-align: center;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date .day {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.event-date .month {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-type {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.event-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.3;
}

.event-content p {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex: 1;
}

.event-details {
  margin-bottom: 1.5rem;
}

.event-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #374151;
}

.event-btn {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* Statistics Infographic */
.practice-statistics {
  padding: 4rem 0;
  background: white;
}

.stats-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stats-subtitle {
  color: #6b7280;
  font-size: 1.2rem;
  margin: 0;
  font-style: italic;
}

.stats-infographic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-block {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
  border: 1px solid #e5e7eb;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #5b21b6);
}

.stat-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
  border-color: var(--primary-color);
}

.stat-block .stat-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.stat-block:hover .stat-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.stat-block .stat-icon img {
  width: 32px;
  height: 32px;
  transition: var(--transition);
}

.stat-block:hover .stat-icon img {
  /* filter: brightness(0) invert(1); */
}

.stat-block .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-block .stat-label {
  color: #374151;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.stat-block .stat-growth {
  color: #10b981;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== THANK YOU PAGE STYLES ===== */

/* Thank You Hero Section */
.thank-you-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5b21b6 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.success-icon-container {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.success-svg {
  width: 50px;
  height: 50px;
}

.success-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pulse-ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: pulse 2s infinite;
}

.pulse-ring.delay-1 {
  animation-delay: 0.5s;
  width: 140px;
  height: 140px;
}

.pulse-ring.delay-2 {
  animation-delay: 1s;
  width: 160px;
  height: 160px;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.thank-you-message h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.thank-you-message .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.message-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.message-details .detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.message-details .detail-item img {
  width: 20px;
  height: 20px;
  /* filter: brightness(0) invert(1); */
}

/* Process Timeline */
.process-timeline {
  padding: 4rem 0;
  background: white;
}

.timeline-header {
  text-align: center;
  margin-bottom: 3rem;
}

.timeline-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.timeline-subtitle {
  color: #6b7280;
  font-size: 1.2rem;
  margin: 0;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-step {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
  border: 1px solid #e5e7eb;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #5b21b6);
}

.timeline-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
  border-color: var(--primary-color);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
/* 
.timeline-step:hover .step-icon {
    background: var(--primary-color);
    transform: scale(1.1);
} */

.step-icon img {
  width: 30px;
  height: 30px;
  transition: var(--transition);
}

.timeline-step:hover .step-icon img {
  /* filter: brightness(0) invert(1); */
}

.step-number {
  font-size: 0.9rem;
  color: var(--background-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.step-content p {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.step-details {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.step-details .detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f9fafb;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #374151;
}

/* Contact Info Block */
.contact-info-block {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, var(--secondary-color) 100%);
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-header p {
  color: #6b7280;
  font-size: 1.1rem;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-method-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
  border: 1px solid #e5e7eb;
  transition: var(--transition);
}

.contact-method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
  border-color: var(--primary-color);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.contact-method-card:hover .method-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.method-icon img {
  width: 30px;
  height: 30px;
  transition: var(--transition);
}

.contact-method-card:hover .method-icon img {
  /* filter: brightness(0) invert(1); */
}

.method-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-link:hover {
  color: #5b21b6;
  text-decoration: underline;
}

.method-content p {
  color: #6b7280;
  margin: 0.5rem 0 0 0;
  font-size: 0.9rem;
}

/* Action Buttons Block */
.action-buttons-block {
  padding: 4rem 0;
  background: white;
  text-align: center;
}

.buttons-header h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary,
.action-buttons .btn-outline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition);
  min-width: 200px;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.btn-outline:hover .btn-icon {
  /* filter: brightness(0) invert(1); */
}

/* ===== ABOUT PAGE CONTACT FORM STYLES ===== */

.contact-form-section {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    #f9fafb 0%,
    var(--secondary-color) 50%,
    #f9fafb 100%
  );
}

.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.form-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5b21b6 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.form-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.form-header > * {
  position: relative;
  z-index: 2;
}

.form-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  backdrop-filter: blur(10px);
}

.form-icon img {
  width: 40px;
  height: 40px;
  /* filter: brightness(0) invert(1); */
}

.form-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.form-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.form-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

.benefit-item img {
  width: 20px;
  height: 20px;
  /* filter: brightness(0) invert(1); */
}

.form-wrapper {
  padding: 3rem 2rem;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  width: 20px;
  height: 20px;
  z-index: 2;
  opacity: 0.6;
}

.input-wrapper input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition);
  background: #f9fafb;
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.input-wrapper input:focus + .input-icon {
  opacity: 1;
  color: var(--primary-color);
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  background: #f9fafb;
  transition: var(--transition);
  appearance: none;
  cursor: pointer;
}

.select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  pointer-events: none;
  font-size: 0.8rem;
}

.select-wrapper select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.textarea-wrapper {
  position: relative;
}

.textarea-wrapper textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  background: #f9fafb;
  transition: var(--transition);
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.textarea-wrapper textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.privacy-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.privacy-notice input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--primary-color);
}

.privacy-notice a {
  color: var(--primary-color);
  text-decoration: none;
}

.privacy-notice a:hover {
  text-decoration: underline;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
}

.btn-icon {
  width: 20px;
  height: 20px;
  /* filter: brightness(0) invert(1); */
}

.contact-info-sidebar {
  background: #f9fafb;
  padding: 3rem 2rem;
  border-top: 1px solid #e5e7eb;
}

.contact-info-sidebar h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.contact-method img {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
}

.method-info h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.method-info p {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.method-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.method-info a:hover {
  text-decoration: underline;
}

.method-info span {
  color: #6b7280;
  font-size: 0.9rem;
}

/* ===== FAQ SECTION STYLES ===== */

.faq-section {
  padding: 4rem 0;
  background: white;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: var(--transition);
}

.faq-icon:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.faq-icon img {
  width: 40px;
  height: 40px;
  transition: var(--transition);
}

.faq-icon:hover img {
  /* filter: brightness(0) invert(1); */
}

.faq-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-subtitle {
  color: #6b7280;
  font-size: 1.2rem;
  margin: 0;
  font-style: italic;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.05);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: #f9fafb;
  transition: var(--transition);
  position: relative;
}

.faq-question:hover {
  background: var(--secondary-color);
}

.question-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-question:hover .question-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.question-icon img {
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

.faq-question:hover .question-icon img {
  /* filter: brightness(0) invert(1); */
}

.faq-question h4 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  flex: 1;
  line-height: 1.4;
}

.expand-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  transition: var(--transition);
  margin-left: 1rem;
}

.faq-question:hover .expand-icon {
  background: #5b21b6;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem 4rem 2rem;
  background: white;
}

.faq-answer p {
  color: #374151;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.faq-answer strong {
  color: var(--primary-color);
}

.faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.answer-details {
  background: #f9fafb;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #4b5563;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-icon {
  font-size: 1.2rem;
  /* width: 34px; */
  text-align: center;
  flex-shrink: 0;
}

.detail-item span:last-child {
  font-weight: 500;
}

/* FAQ Interactive States */
.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.faq-item.active .faq-question {
  background: var(--primary-color);
  color: white;
}

.faq-item.active .faq-question h4 {
  color: white;
}

.faq-item.active .question-icon {
  background: white;
}

.faq-item.active .question-icon img {
  filter: none;
}

.faq-item.active .expand-icon {
  background: white;
  color: var(--primary-color);
  transform: rotate(45deg);
}

/* ===== INDEX PAGE REGISTRATION FORM STYLES ===== */

.registration {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    #f9fafb 0%,
    var(--secondary-color) 50%,
    #f9fafb 100%
  );
}

.registration-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.registration-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5b21b6 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.registration-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="regdots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23regdots)"/></svg>');
}

.registration-header > * {
  position: relative;
  z-index: 2;
}

.registration-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  backdrop-filter: blur(10px);
}

.registration-icon img {
  width: 40px;
  height: 40px;
  /* filter: brightness(0) invert(1); */
}

.registration-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.registration-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.registration-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.registration-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

.registration-benefits .benefit-item img {
  width: 20px;
  height: 20px;
  /* filter: brightness(0) invert(1); */
}

.registration-form-wrapper {
  padding: 3rem 2rem;
}

.registration-form {
  max-width: 800px;
  margin: 0 auto;
}

.radio-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.radio-option:hover {
  background: var(--secondary-color);
  border-color: var(--primary-color);
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  /* border: 2px solid #D1D5DB; */
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: var(--primary-color);
  background: var(--primary-color);
}

/* .radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
} */

.radio-text {
  font-weight: 500;
  color: #374151;
}

.radio-option input[type="radio"]:checked ~ .radio-text {
  color: var(--primary-color);
  font-weight: 600;
}

.registration-info {
  background: #f9fafb;
  padding: 3rem 2rem;
  border-top: 1px solid #e5e7eb;
}

.registration-info h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
}

.info-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.info-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
  transition: var(--transition);
}

.info-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step-content p {
  color: #6b7280;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== KONTAKTY PAGE CONTACT FORM STYLES ===== */

.contact-form-box {
  max-width: 1000px;
  margin: 2rem auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.contact-form-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5b21b6 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.contact-form-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactdots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contactdots)"/></svg>');
}

.contact-form-header > * {
  position: relative;
  z-index: 2;
}

.contact-form-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  backdrop-filter: blur(10px);
}

.contact-form-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.contact-form-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-form-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.contact-form-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-form-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

.contact-form-benefits .benefit-item img {
  width: 20px;
  height: 20px;
  /* filter: brightness(0) invert(1); */
}

.contact-form-wrapper {
  padding: 3rem 2rem;
}

/* ===== COURSE MODULES ENHANCED STYLES ===== */

.course-modules {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.module {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: var(--transition);
}

.module:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.15);
  border-color: var(--primary-color);
}

.module-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #5b21b6 100%);
  color: white;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.module-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="moduledots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23moduledots)"/></svg>');
}

.module-header > * {
  position: relative;
  z-index: 2;
}

.module-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.module-icon img {
  width: 50px;
  height: 50px;
}

.module-title h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.module-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
  font-style: italic;
}

.module-content {
  padding: 2.5rem 2rem;
}

.module-description {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
}

.module-description p {
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.module-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.module-topics {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.module-topics li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.module-topics li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), #5b21b6);
  transform: scaleY(0);
  transition: var(--transition);
}

.module-topics li:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
  transform: translateX(10px);
}

.module-topics li:hover::before {
  transform: scaleY(1);
}

.topic-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.module-topics li:hover .topic-icon {
  background: var(--primary-color);
  transform: scale(1.1) rotate(5deg);
}

.topic-content {
  flex: 1;
}

.topic-content h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.topic-content p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.module-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.module-duration,
.module-level,
.module-projects {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 12px;
  transition: var(--transition);
}

.module-duration:hover,
.module-level:hover,
.module-projects:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.module-duration img,
.module-level img,
.module-projects img {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.module-duration div,
.module-level div,
.module-projects div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.module-duration strong,
.module-level strong,
.module-projects strong {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
}

.duration-details,
.level-details,
.projects-details {
  color: #6b7280;
  font-size: 0.9rem;
  font-style: italic;
}

/* ===== NEW INDEX PAGE SECTIONS STYLES ===== */

/* Learning Methodology Section */
.learning-methodology {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, var(--secondary-color) 100%);
}

.methodology-header {
  text-align: center;
  margin-bottom: 4rem;
}

.methodology-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.methodology-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  margin: 0;
}

.methodology-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.methodology-text h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.methodology-text > p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 2rem;
}

.methodology-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 24px;
  height: 24px;
}

.feature-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-content p {
  color: #6b7280;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.learning-path {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.path-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
  transition: var(--transition);
  position: relative;
}

.path-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 30px;
  width: 2px;
  height: 12px;
  background: #e5e7eb;
}

.path-step.active {
  border: 2px solid var(--primary-color);
  background: var(--secondary-color);
}

.path-step.active::after {
  background: var(--primary-color);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #e5e7eb;
  color: #6b7280;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.path-step.active .step-number {
  background: var(--primary-color);
  color: white;
}

.step-info h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.step-info p {
  color: #6b7280;
  margin: 0;
  font-size: 0.95rem;
}

/* Success Stories Section */
.success-stories {
  padding: 5rem 0;
  background: white;
}

.stories-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stories-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.stories-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  margin: 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.story-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #e5e7eb;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
  border-color: var(--primary-color);
}

.story-header {
  padding: 2rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f3f4f6 100%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.student-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.student-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.student-role {
  color: #6b7280;
  margin-bottom: 1rem;
  font-weight: 500;
}

.story-timeline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-size: 0.9rem;
  font-weight: 500;
}

.story-timeline img {
  width: 16px;
  height: 16px;
}

.story-content {
  /* padding: 2rem; */
}

.story-content blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #374151;
  margin: 0 0 1.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.story-content blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
}

.story-achievements {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.achievement {
  background: var(--secondary-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 500;
}

/* Partners Section */
.partners {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #5b21b6 100%);
  color: white;
}

.partners-header {
  text-align: center;
  margin-bottom: 4rem;
}

.partners-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.partners-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
}

.partners-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.partner-stat {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.partner-stat .stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: white;
}

.partner-stat .stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.partners-benefits h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon img {
  width: 30px;
  height: 30px;
  /* filter: brightness(0) invert(1); */
}

.benefit-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.benefit-content p {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* Course Details Section */
.course-details {
  padding: 5rem 0;
  background: #f9fafb;
}

.details-header {
  text-align: center;
  margin-bottom: 4rem;
}

.details-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.details-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  margin: 0;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.detail-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
  transition: var(--transition);
  border: 1px solid #e5e7eb;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
  border-color: var(--primary-color);
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 2rem; */
}

.detail-icon img {
  width: 40px;
  height: 40px;
}

.detail-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.detail-info {
  margin-bottom: 2rem;
}

.detail-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #4b5563;
}

.detail-info strong {
  color: var(--primary-color);
  font-weight: 600;
}

.detail-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature {
  color: #059669;
  font-size: 0.95rem;
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.faq-item {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
}

.faq-question {
  padding: 1.5rem;
  background: #f9fafb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--secondary-color);
}

.faq-question h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
  flex: 1;
  padding-right: 1rem;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-answer {
  padding: 0;
  background: white;
  border-top: 1px solid #e5e7eb;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 900px;
  opacity: 1;
}

.faq-item.active .faq-question {
  background: var(--primary-color);
  color: white;
}

.faq-item.active .faq-question h3 {
  color: white;
}

.faq-item.active .faq-toggle {
  background: white;
  color: var(--primary-color);
  transform: rotate(45deg);
}

.faq-answer p {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* ===== ENHANCED INDEX PAGE STYLES ===== */

/* Hero Section Enhancements */
.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.hero-feature:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.hero-feature .feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feature .feature-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.hero-feature .feature-text h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-feature .feature-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  color: #4b5563;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Features Section Enhancements */
.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.features-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card .feature-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.feature-card .feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-details {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #4b5563;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-icon {
  font-size: 1.2rem;
  margin: 0 auto;
  text-align: center;
}

.features-additional {
  margin-top: 5rem;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, var(--secondary-color) 100%);
  border-radius: 20px;
}

.additional-info h3 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.1);
  transition: var(--transition);
  border: 1px solid #e5e7eb;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
  border-color: var(--primary-color);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon img {
  width: 30px;
  height: 30px;
}

.info-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.info-content p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.3s ease-out;
}

/* ===== MODERN CONTENT BLOCKS ===== */
.content-block {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.methodology-item,
.pattern-item,
.security-item,
.future-topic {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.methodology-item::before,
.pattern-item::before,
.security-item::before,
.future-topic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    #6366f1 25%,
    #8b5cf6 50%,
    #ec4899 75%,
    var(--accent-color) 100%
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.methodology-item::after,
.pattern-item::after,
.security-item::after,
.future-topic::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.methodology-item:hover,
.pattern-item:hover,
.security-item:hover,
.future-topic:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.15),
    0 20px 25px -5px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.methodology-item:hover::after,
.pattern-item:hover::after,
.security-item:hover::after,
.future-topic:hover::after {
  opacity: 1;
}

.methodology-item h3,
.pattern-item h3,
.security-item h3,
.future-topic h3 {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.methodology-item h3::before {
  content: "⚡";
  font-size: 1.5rem;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.pattern-item h3::before {
  content: "🏗️";
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.security-item h3::before {
  content: "🔒";
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.future-topic h3::before {
  content: "🚀";
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.methodology-item p,
.pattern-item p,
.security-item p,
.future-topic p {
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-align: justify;
}

.methodology-benefits,
.methodology-tools,
.methodology-cycle,
.pattern-usage,
.pattern-benefits,
.pattern-technologies,
.security-practices,
.auth-methods,
.gdpr-requirements,
.ai-applications,
.wasm-benefits,
.pwa-features,
.green-practices {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(147, 51, 234, 0.08) 100%
  );
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  margin-top: 1.5rem;
  position: relative;
  backdrop-filter: blur(5px);
}

.methodology-benefits::before,
.methodology-tools::before,
.methodology-cycle::before,
.pattern-usage::before,
.pattern-benefits::before,
.pattern-technologies::before,
.security-practices::before,
.auth-methods::before,
.gdpr-requirements::before,
.ai-applications::before,
.wasm-benefits::before,
.pwa-features::before,
.green-practices::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), #8b5cf6);
  border-radius: 16px 16px 0 0;
}

.methodology-benefits h4,
.methodology-tools h4,
.methodology-cycle h4,
.pattern-usage h4,
.pattern-benefits h4,
.pattern-technologies h4,
.security-practices h4,
.auth-methods h4,
.gdpr-requirements h4,
.ai-applications h4,
.wasm-benefits h4,
.pwa-features h4,
.green-practices h4 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.methodology-benefits h4::before,
.pattern-benefits h4::before,
.security-practices h4::before,
.ai-applications h4::before,
.pwa-features h4::before,
.green-practices h4::before {
  content: "✨";
  font-size: 1.1rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.methodology-tools h4::before {
  content: "🛠️";
  font-size: 1.1rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.methodology-cycle h4::before {
  content: "🔄";
  font-size: 1.1rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.pattern-usage h4::before,
.pattern-technologies h4::before,
.auth-methods h4::before,
.wasm-benefits h4::before {
  content: "💡";
  font-size: 1.1rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.gdpr-requirements h4::before {
  content: "📋";
  font-size: 1.1rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.methodology-benefits ul,
.methodology-tools ul,
.pattern-benefits ul,
.security-practices ul,
.ai-applications ul,
.pwa-features ul,
.green-practices ul,
.gdpr-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.methodology-benefits li,
.methodology-tools li,
.pattern-benefits li,
.security-practices li,
.ai-applications li,
.pwa-features li,
.green-practices li,
.gdpr-requirements li {
  padding: 0.75rem 1rem;
  padding-left: 2.5rem;
  position: relative;
  color: #1f2937;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  font-weight: 500;
}

.methodology-benefits li:hover,
.methodology-tools li:hover,
.pattern-benefits li:hover,
.security-practices li:hover,
.ai-applications li:hover,
.pwa-features li:hover,
.green-practices li:hover,
.gdpr-requirements li:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.methodology-benefits li::before,
.methodology-tools li::before,
.pattern-benefits li::before,
.security-practices li::before,
.ai-applications li::before,
.pwa-features li::before,
.green-practices li::before,
.gdpr-requirements li::before {
  content: "▶";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: bold;
}

.methodology-cycle ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
  display: grid;
  gap: 1rem;
}

.methodology-cycle li {
  padding: 1rem 1.5rem;
  padding-left: 4rem;
  position: relative;
  color: #1f2937;
  line-height: 1.7;
  counter-increment: step-counter;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  font-weight: 500;
}

.methodology-cycle li:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.methodology-cycle li::before {
  content: counter(step-counter);
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pattern-usage p,
.pattern-technologies p,
.auth-methods p,
.wasm-benefits p {
  margin: 0;
  color: #1f2937;
  line-height: 1.7;
  font-weight: 500;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

/* ===== FUTURE CONTENT SECTION ===== */
.future-content {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

/* ===== RESPONSIVE GRID LAYOUTS ===== */
@media (min-width: 768px) {
  .content-block {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 0 2rem;
  }

  .future-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .content-block {
    gap: 4rem;
    padding: 0 3rem;
  }

  .future-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 0 3rem;
  }
}

@media (min-width: 1200px) {
  .content-block,
  .future-content {
    padding: 0 4rem;
  }

  .future-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .footer,
  .cookie-popup,
  .btn-primary,
  .btn-secondary,
  .back-to-site {
    display: none;
  }

  main {
    margin-top: 0;
  }

  .legal-document {
    box-shadow: none;
    padding: 0;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
}
