/* =============================================================================
   UrbanFix Solutions - CSS Styles
   Minimalist design inspired by Forteck
   ============================================================================= */

:root {
  --primary-color: #2243fc;
  --primary-dark: #2118d4;
  --primary-light: #4d53ff;
  --text-dark: #1a1a1a;
  --text-gray: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
  --shadow-md: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 0.5rem 2rem rgba(0, 0, 0, 0.12);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--text-dark);
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

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

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

/* Header */
.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

.logo span {
  color: var(--primary-color);
}

.header-email {
  color: var(--primary-color);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-email i {
  font-size: 1.1rem;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

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

.btn-consultation {
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: none;
  transition: var(--transition);
}

.btn-consultation:hover {
  background: var(--primary-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Main Content */
main {
  margin-top: 80px;
}

.section-padding {
  padding: 4rem 0;
}

.section-padding-lg {
  padding: 5rem 0;
}

/* Cards */
.card-custom {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}


.card-custom-2 {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.card-custom img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.card-custom h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.card-custom p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: auto;
}

.card-meta i {
  font-size: 1rem;
}

.card-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
}

.status-verified {
  background: #d4edda;
  color: #155724;
}

.status-suspicious {
  background: #fff3cd;
  color: #856404;
}

.status-scam {
  background: #f8d7da;
  color: #721c24;
}

/* Buttons */
.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Forms */
.form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(67, 34, 252, 0.15);
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}



/* Footer */
.site-footer {
  background: var(--bg-light);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: block;
}

.footer-section h5 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--text-gray);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 0.25rem;
}

.footer-contact {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

.cookie-popup p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cookie-popup .btn {
  margin-right: 0.5rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Info Box */
.info-box {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: var(--radius-sm);
  margin: 2rem 0;
}

.info-box h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.info-box ul li:last-child {
  border-bottom: none;
}

/* Contact Info */
.contact-info {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-info h4 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

.contact-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item-content h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.contact-item-content p {
  margin: 0;
  color: var(--text-gray);
}

/* Map */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Responsive */
@media (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .section-padding-lg {
    padding: 3.5rem 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .section-padding {
    padding: 2rem 0;
  }

  .section-padding-lg {
    padding: 2.5rem 0;
  }

  .card-custom img {
    height: 180px;
  }

  .map-container iframe {
    height: 350px;
  }
}


/* Загальні стилі */
:root {
  --primary-color: #2243fc;
  --primary-dark: #2118d4; 
  --primary-light: #4d53ff;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
  --text-dark: #1a1a1a;
  --text-gray: #6c757d;
  --text-light: #9ca3af;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-secondary: #f1f3f4;
  --border-color: #e0e0e0;
  --border-light: #f0f0f0;
  --shadow-sm: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05);
  --shadow-md: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 0.5rem 2rem rgba(0, 0, 0, 0.12);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --transition: all 0.3s ease;
}

/* Стилі для головного блоку */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(34, 67, 252, 0.8) 0%,
    rgba(33, 24, 212, 0.82) 50%,
    rgba(77, 83, 255, 0.86) 100%
  ),
  url('./img/article-internet-fraud.webp') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 2s infinite;
  text-align: center;
}

.scroll-indicator i {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Анімації */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}
/* Reusable Classes */
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

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

.service-card-body {
  padding: 1.5rem;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-text {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.icon-cosmetic { background: var(--success-color); }
.icon-capital { background: var(--danger-color); }
.icon-turnkey { background: var(--primary-color); }
.icon-partial { background: var(--warning-color); }

.content-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 3rem;
}

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

.content-body {
  padding: 2rem;
}

.content-text {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.content-text:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .content-img {
    height: 250px;
  }
  
  .content-body {
    padding: 1.5rem;
  }
}
/* Timeline Styles */
.timeline-item {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: -2.5rem;
  width: 2px;
  background: var(--border-color);
}

.timeline-item:last-child::before {
  bottom: auto;
  height: 50px;
}

.timeline-number {
  position: absolute;
  left: -12px;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.timeline-text {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Info Block Styles */
.info-block {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}

.info-block h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.info-block p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* FAQ Styles */
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  background: transparent;
  border: none;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question.active {
  background: var(--primary-color);
  color: white;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-gray);
  line-height: 1.6;
  display: none;
  margin-top: 20px;
}

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

.faq-icon {
  transition: var(--transition);
}

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

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray);
  font-size: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list .material-icons {
  color: var(--success-color);
  font-size: 1.2rem;
}

.professional-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

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

.professional-content {
  padding: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-item {
    padding-left: 3rem;
  }
  
  .info-block {
    padding: 2rem 1.5rem;
  }
  
  .professional-content {
    padding: 2rem;
  }
  
  .professional-img {
    height: 220px;
  }
}
/* Philosophy Block */
.philosophy-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.philosophy-img {
  height: 350px;
  object-fit: cover;
  width: 100%;
}

.philosophy-content {
  padding: 3rem 2.5rem;
  position: relative;
}

.philosophy-content::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: serif;
  opacity: 0.3;
}

/* Quality Control */
.control-section {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-secondary) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.control-img {
  height: 320px;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.principles-list {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
}

.principles-list h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Tips Section */
.tips-container {
  max-width: 900px;
  margin: 0 auto;
}

.tip-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

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

.tip-number {
  position: absolute;
  left: -15px;
  top: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}

.tip-title {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.tip-text {
  color: var(--text-gray);
  line-height: 1.6;
  margin-left: 1rem;
}

/* Mistakes Section */
.mistakes-intro {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.mistakes-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.mistake-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.mistake-img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.mistake-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--danger-color);
  transition: var(--transition);
}

.mistake-card:hover {
  box-shadow: var(--shadow-md);
}

.mistake-title {
  color: var(--danger-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mistake-text {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .philosophy-content {
    padding: 2rem 1.5rem;
  }
  
  .control-section {
    padding: 2rem;
  }
  
  .tip-item {
    padding: 1.5rem;
    margin-left: 1rem;
  }
  
  .mistakes-gallery {
    grid-template-columns: 1fr;
  }
}
/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  
}

.service-item {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.service-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0;
}

/* Complex Approach */
.complex-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.complex-images {
  display: flex;
  height: 300px;
}

.complex-img {
  flex: 1;
  object-fit: cover;
  height: 100%;
  transition: var(--transition);
}

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

.complex-content {
  padding: 3rem;
  background: linear-gradient(135deg, var(--bg-white) 0%, rgba(34, 67, 252, 0.02) 100%);
}

/* Target Audience */
.audience-section {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.audience-img {
  height: 450px;
  object-fit: cover;
  width: 100%;
}

.audience-content {
  padding: 3rem 2.5rem;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.audience-list li {
  padding: 1.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.audience-list li:last-child {
  border-bottom: none;
}

.audience-list li:hover {
  color: var(--text-dark);
  background: var(--bg-light);
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: var(--radius-sm);
}

.audience-list .material-icons {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-top: 0.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
  }
  
  .service-item {
    padding: 1.5rem 1rem;
  }
  
  .complex-images {
    flex-direction: column;
    height: auto;
  }
  
  .complex-img {
    height: 200px;
  }
  
  .complex-content {
    padding: 2rem;
  }
  
  .audience-content {
    padding: 2rem 1.5rem;
  }
  
  .audience-img {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}