:root {
  /* Color Palette - Complementary Retro Theme */
  --primary-color: #ff6b6b;
  --primary-dark: #e63946;
  --primary-light: #ff9e9e;
  --secondary-color: #4ecdc4;
  --secondary-dark: #33a1c9;
  --secondary-light: #83d1c8;
  --accent-color: #ffd166;
  --accent-dark: #e9c46a;
  --accent-light: #ffe699;
  --dark-color: #2b2d42;
  --dark-color-light: #474a6e;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --success-color: #06d6a0;
  --danger-color: #ef476f;
  --warning-color: #ffd166;
  --info-color: #118ab2;
  
  /* Typography */
  --heading-font: 'Space Grotesk', sans-serif;
  --body-font: 'DM Sans', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Gradients */
  --gradient-primary: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(45deg, var(--secondary-color), var(--secondary-light));
  --gradient-accent: linear-gradient(45deg, var(--accent-color), var(--accent-light));
  --gradient-dark: linear-gradient(45deg, var(--dark-color), var(--dark-color-light));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark-color);
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

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

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-sm);
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--gray-color);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

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

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

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

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

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

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

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

/* Button Styles */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--border-radius-md);
  font-family: var(--body-font);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.btn:hover, button:hover, input[type='submit']:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:hover {
  background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
  color: white;
}

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

.btn-secondary:hover {
  background: linear-gradient(45deg, var(--secondary-dark), var(--secondary-color));
  color: white;
}

.read-more {
  font-weight: 600;
  display: inline-block;
  position: relative;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.read-more::after {
  content: '→';
  position: relative;
  opacity: 0;
  top: 0;
  right: -10px;
  transition: var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  opacity: 1;
  right: -20px;
}

/* Card Styles */
.card {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

.card-content {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.card-content p {
  color: var(--gray-color);
  margin-bottom: 1.5rem;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  backdrop-filter: blur(5px);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
}

.navbar-nav {
  display: flex;
  align-items: center;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  color: var(--dark-color);
  font-weight: 500;
  transition: var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
  border-radius: var(--border-radius-sm);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.btn-primary {
  padding: 8px 16px;
  border-radius: var(--border-radius-md);
  color: white;
}

.nav-link.btn-primary::after {
  display: none;
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar-toggler-icon {
  display: block;
  width: 30px;
  height: 20px;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--dark-color);
  transition: var(--transition-fast);
}

.navbar-toggler-icon::before {
  top: 0;
}

.navbar-toggler-icon::after {
  bottom: 0;
}

.navbar-toggler-icon span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--dark-color);
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 100px;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: white;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
  margin-bottom: 3rem;
}

.progress-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.progress-item {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.progress-item.active {
  background-color: white;
  transform: scale(1.2);
}

/* About Section */
.about-section {
  padding: var(--section-padding);
  overflow: hidden;
}

.about-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  border-top: 4px solid var(--primary-color);
  border-left: 4px solid var(--primary-color);
  z-index: 1;
  animation: rotateSquare 8s linear infinite;
}

.about-image-container::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border-bottom: 4px solid var(--secondary-color);
  border-right: 4px solid var(--secondary-color);
  z-index: 1;
  animation: rotateSquare 8s linear infinite reverse;
}

.about-image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.about-content {
  padding: 2rem 0;
}

.about-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-color);
}

/* Portfolio Section */
.portfolio-section {
  padding: var(--section-padding);
  background-color: #f9f9f9;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  background-color: white;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  font-weight: 500;
  color: var(--gray-color);
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.filter-btn.active {
  background: var(--gradient-primary);
  color: white;
}

.portfolio-gallery {
  margin-top: 2rem;
}

.portfolio-item {
  margin-bottom: 2rem;
}

/* External Resources Section */
.external-resources {
  padding: var(--section-padding);
  background-color: white;
}

.resources-container {
  margin-top: 3rem;
}

.resource-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.resource-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.resource-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.resource-card p {
  color: var(--gray-color);
  margin-bottom: 1.5rem;
}

.resource-link {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  display: inline-block;
  transition: var(--transition-fast);
  margin-top: auto;
}

.resource-link::after {
  content: '→';
  position: relative;
  opacity: 0;
  top: 0;
  right: -10px;
  transition: var(--transition-fast);
}

.resource-link:hover {
  color: var(--primary-dark);
}

.resource-link:hover::after {
  opacity: 1;
  right: -20px;
}

/* Instructors Section */
.instructors-section {
  padding: var(--section-padding);
  background-color: #f9f9f9;
}

.instructor-card {
  height: 100%;
}

.instructor-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.instructor-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.instructor-position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  color: var(--gray-color);
  font-weight: 500;
  transition: var(--transition-fast);
}

.social-link:hover {
  color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
  padding: var(--section-padding);
  background-color: white;
}

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

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 1.25rem;
  background-color: white;
  color: var(--dark-color);
  border: none;
  box-shadow: none;
  transition: var(--transition-fast);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  transition: var(--transition-fast);
}

.accordion-body {
  padding: 1.25rem;
  color: var(--gray-color);
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background-color: #f9f9f9;
}

.contact-info {
  padding-right: 2rem;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-benefits {
  margin-top: 2.5rem;
}

.benefit-item {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 1rem;
  border-radius: 50%;
  overflow: hidden;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-content h4 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.benefit-content p {
  color: var(--gray-color);
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-md);
  font-family: var(--body-font);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
}

.form-check-label {
  color: var(--gray-color);
}

.privacy-check {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.submit-btn {
  width: 100%;
}

/* Footer */
.site-footer {
  background-color: var(--dark-color);
  color: white;
  padding-top: 4rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.footer-content {
  padding-bottom: 3rem;
}

.footer-info h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

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

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
  font-weight: 500;
}

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

.footer-newsletter h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-newsletter form {
  display: flex;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  font-family: var(--body-font);
}

.footer-newsletter button {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.footer-newsletter button:hover {
  background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
  animation: fadeInUp 0.5s ease;
}

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.cookie-btn:hover {
  background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-content {
  max-width: 600px;
  padding: 3rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

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

/* Terms & Privacy Pages */
.page-content {
  padding-top: 120px;
  padding-bottom: 80px;
}

.page-content h1 {
  margin-bottom: 2rem;
}

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content ul, .page-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateSquare {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Media Queries */
@media (max-width: 991px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .navbar-toggler {
    display: block;
  }
  
  .collapse:not(.show) {
    display: none;
  }
  
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    box-shadow: var(--shadow-md);
  }
  
  .navbar-nav {
    flex-direction: column;
  }
  
  .nav-item {
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
  }
  
  .hero {
    padding-top: 80px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .about-content {
    padding: 2rem 0;
  }
  
  .stats-container {
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 0 0 48%;
    margin-bottom: 1rem;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .about-image-container {
    margin-bottom: 2rem;
  }
  
  .portfolio-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .contact-info {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .footer-content .col-md-6 {
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .stat-item {
    flex: 0 0 100%;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
}