:root {
  /* Основная яркая цветовая палитра */
  --primary-color: #ff6b00;
  --primary-light: #ff8a3c;
  --primary-dark: #e05800;
  --secondary-color: #2c7dfa;
  --secondary-light: #4a91ff;
  --secondary-dark: #1a64d6;
  --accent-color: #32d74b;
  --accent-light: #5aea6e;
  --accent-dark: #28b83e;
  
  /* Нейтральные цвета */
  --dark: #252525;
  --dark-gray: #444444;
  --medium-gray: #888888;
  --light-gray: #e0e0e0;
  --off-white: #f7f7f7;
  --white: #ffffff;
  
  /* Тени для нейроморфизма */
  --nm-shadow-light: 6px 6px 12px rgba(200, 200, 200, 0.5), -6px -6px 12px rgba(255, 255, 255, 0.8);
  --nm-shadow-dark: 6px 6px 12px rgba(0, 0, 0, 0.2), -6px -6px 12px rgba(255, 255, 255, 0.05);
  --nm-shadow-inset: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.1);
  
  /* Радиусы */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
  
  /* Переходы */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Размеры */
  --container-width: 1200px;
  --header-height: 80px;
  --footer-padding: 60px;
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--dark);
}

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

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

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

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-md);
}

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

.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--medium-gray);
}

/* Нейроморфные элементы */
.neomorphic {
  border-radius: var(--border-radius-lg);
  background: var(--off-white);
  box-shadow: var(--nm-shadow-light);
  padding: 30px;
  transition: all var(--transition-medium);
}

.neomorphic:hover {
  box-shadow: var(--nm-shadow-dark);
  transform: translateY(-5px);
}

.neomorphic-inset {
  border-radius: var(--border-radius-lg);
  background: var(--off-white);
  box-shadow: var(--nm-shadow-inset);
  padding: 30px;
}

/* Кнопки */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius-md);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-medium);
  text-align: center;
  margin: 10px 0;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white) !important;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--white) !important;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-3px);
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2);
}

button, input[type="submit"] {
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium);
}

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

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

.logo h1 {
  font-size: 2rem;
  margin: 0;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.desktop-nav {
  display: flex;
}

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

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

.desktop-nav ul li a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 5px;
}

.desktop-nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-medium);
}

.desktop-nav ul li a:hover {
  color: var(--primary-color);
}

.desktop-nav ul li a:hover:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  z-index: 999;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav ul li a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
  padding: 10px;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-nav ul li:last-child a {
  border-bottom: none;
}

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

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

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

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Services Section */
.services {
  background: var(--off-white);
}

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

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
  transition: all var(--transition-medium);
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

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

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

.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

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

.toggle-container {
  margin-top: 15px;
}

.toggle-input {
  display: none;
}

.toggle-label {
  display: inline-block;
  padding: 8px 16px;
  color: var(--secondary-color);
  cursor: pointer;
  border-radius: var(--border-radius-sm);
  background: var(--off-white);
  transition: all var(--transition-fast);
  font-weight: 600;
}

.toggle-label:hover {
  background: var(--light-gray);
}

.toggle-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.toggle-input:checked + .toggle-label {
  background: var(--secondary-color);
  color: var(--white);
}

.toggle-input:checked ~ .toggle-content {
  max-height: 200px;
}

/* Success Stories Section */
.success-stories {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: var(--white);
}

.success-stories .section-header h2,
.success-stories .section-header p {
  color: var(--white);
}

.success-stories .section-header h2:after {
  background: var(--white);
}

.stories-carousel {
  position: relative;
  padding: 0 40px;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.carousel-slide {
  min-width: 100%;
  padding: 20px;
}

.success-stories .card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all var(--transition-fast);
}

.carousel-button:hover {
  background: var(--primary-color);
  color: var(--white);
}

.carousel-button.prev {
  left: 0;
}

.carousel-button.next {
  right: 0;
}

/* Portfolio Section */
.portfolio {
  background: var(--white);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  margin: 5px;
  background: var(--off-white);
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  transition: all var(--transition-fast);
}

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

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

.portfolio-item {
  transition: all var(--transition-medium);
}

/* External Resources Section */
.resources {
  background: var(--off-white);
}

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

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
  transition: all var(--transition-medium);
}

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

.resource-card .card-image {
  width: 100%;
  height: 200px;
}

.resource-card .card-content {
  padding: 25px;
  text-align: center;
}

.resource-card h3 {
  color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
  background: var(--white);
}

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

.accordion-item {
  margin-bottom: 20px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--nm-shadow-light);
  overflow: hidden;
  background: var(--white);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.accordion-header:hover {
  background: var(--off-white);
}

.client-info {
  display: flex;
  align-items: center;
}

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

.client-info h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.client-info p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 0 20px 20px;
}

/* Innovation Section */
.innovation {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
  color: var(--white);
}

.innovation .section-header h2,
.innovation .section-header p {
  color: var(--white);
}

.innovation .section-header h2:after {
  background: var(--white);
}

.innovation-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.image-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-side img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.text-side {
  flex: 1;
}

.innovation-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
}

.innovation-accordion .accordion-header {
  color: var(--white);
}

.innovation-accordion .accordion-header h3 {
  color: var(--white);
  margin-bottom: 0;
}

.innovation-accordion .accordion-icon {
  color: var(--white);
}

.innovation-accordion .accordion-content p {
  color: var(--white);
}

/* Contact Section */
.contact {
  background: var(--off-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.animated-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-map {
  margin-top: 30px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
}

.contact-map img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--nm-shadow-light);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input, 
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius-md);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.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(255, 107, 0, 0.2);
}

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

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: var(--footer-padding) 0 30px;
}

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

.footer-logo h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--light-gray);
}

.footer-links h3, .footer-legal h3, .footer-social h3 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3:after, .footer-legal h3:after, .footer-social h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
}

.footer-links ul, .footer-legal ul, .footer-social ul {
  list-style: none;
}

.footer-links ul li, .footer-legal ul li, .footer-social ul li {
  margin-bottom: 10px;
}

.footer-links ul li a, .footer-legal ul li a, .footer-social ul li a {
  color: var(--light-gray);
  transition: all var(--transition-fast);
}

.footer-links ul li a:hover, .footer-legal ul li a:hover, .footer-social ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

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

.footer-bottom p {
  color: var(--medium-gray);
  margin-bottom: 0;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
  background: var(--off-white);
}

.success-content {
  max-width: 600px;
  padding: 50px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--nm-shadow-light);
}

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

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Content Pages (Privacy, Terms) */
.content-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

.content-page .container {
  max-width: 800px;
}

.content-page h1 {
  margin-bottom: 30px;
  color: var(--primary-color);
}

.content-page h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.content-section {
  margin-bottom: 40px;
}

/* Cookie Consent */
#cookie-consent {
  border-top-left-radius: var(--border-radius-md);
  border-top-right-radius: var(--border-radius-md);
}

#accept-cookies {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

#accept-cookies:hover {
  background-color: var(--primary-light);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .innovation-content {
    flex-direction: column;
  }
  
  .image-side, .text-side {
    width: 100%;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    height: auto;
    padding: 150px 0 100px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .portfolio-filter {
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 576px) {
  .section-padding {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2.3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

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

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animated-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animated-scale-in {
  animation: scaleIn 0.8s ease forwards;
}

.animated-slide-right {
  animation: slideInRight 0.8s ease forwards;
}

.animated-slide-left {
  animation: slideInLeft 0.8s ease forwards;
}

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

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

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

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

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

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* Icon Styles */
.icon-location:before { content: "📍"; }
.icon-phone:before { content: "📞"; }
.icon-email:before { content: "✉️"; }