/* Page-Specific Styles - Hero Sections, Content Blocks, Page Layouts */

/* Essential Utility Classes - Spacing, Effects, etc. */

/* Spacing */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-4 { padding-top: 1rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mr-3 { margin-right: 0.75rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Object fit for video */
.object-cover { 
  object-fit: cover; 
  object-position: center;
}

/* Video specific styles */
video {
  min-width: 100%;
  min-height: 100%;
}

/* Background */
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }

/* Effects */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-md { border-radius: 0.375rem; }

/* Border */
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-2 { border-width: 2px; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-700 { border-color: #374151; }
.border-white { border-color: #ffffff; }

/* Opacity */
.bg-opacity-50 { background-color: rgb(38 38 38 / 0.5); }
.bg-opacity-70 { background-color: rgb(38 38 38 / 0.7); }
.bg-opacity-80 { background-color: rgb(38 38 38 / 0.8); }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }

/* Transitions */
.transition-colors { 
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; 
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); 
  transition-duration: 150ms; 
}
.transition-all { 
  transition-property: all; 
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); 
  transition-duration: 150ms; 
}

/* Text utilities */
.text-center { text-align: center; }
.italic { font-style: italic; }

/* Display utilities */
.hidden { display: none; }
.block { display: block; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Custom gradient background */
.gradient-bg {
  background: linear-gradient(135deg, #f0f8ff 0%, #e0f7fa 50%, #b3e5fc 100%);
}

/* Loading state */
.loading { opacity: 0.7; }

/* Gallery styles for specific page */
.gallery-section { display: none; }
.gallery-section.active { display: grid; }

.gallery-tag {
  cursor: pointer;
}

.gallery-tag.active {
  background-color: #3182ce;
  color: white;
}

.gallery-tag.inactive {
  background-color: #e2e8f0;
  color: #64748b;
}

.gallery-item {
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}

.hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

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

/* Service Card Overlay */
.service-card-image-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.service-card-image-container .service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  display: none;
}

.service-card-content {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.service-card p {
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Style the "Saznajte više →" text as blue links */
.service-card-link-text {
  color: #3182ce;
  font-weight: 600;
}

/* Technology Section */
.technology-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.technology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.technology-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.technology-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.technology-features {
  list-style: none;
}

.technology-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.technology-features li::before {
  content: '✓';
  background-color: #48bb78;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-weight: bold;
}

.technology-image {
  text-align: center;
}

.technology-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
  padding: 6rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #374151;
  margin-bottom: 2rem;
}

.about-text p {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f8fafc;
  border-radius: 12px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #3182ce;
  display: block;
}

.stat-label {
  color: #6b7280;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #374151;
  margin-bottom: 2rem;
}

.contact-info p {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #374151;
}

.contact-details li strong {
  margin-right: 0.5rem;
  min-width: 80px;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3182ce 0%, #63b3ed 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
}

.process-description {
  color: #6b7280;
  line-height: 1.8;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
  background-color: #f8fafc;
}

.gallery-container {
  margin-top: 4rem;
}

.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-category {
  padding: 0.75rem 1.5rem;
  background-color: white;
  border: 2px solid #e5e7eb;
  border-radius: 25px;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.gallery-category:hover,
.gallery-category.active {
  background-color: #3182ce;
  color: white;
  border-color: #3182ce;
}

/* Projekt Bilice Specific Styles */
.bilice-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bilice-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.bilice-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.bilice-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.1;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcz4KICAgIDxwYXR0ZXJuIGlkPSJncmlkIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPgogICAgICA8cGF0aCBkPSJNIDIwIDAgTCAwIDAgMCAyMCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZTVlN2ViIiBzdHJva2Utd2lkdGg9IjEiLz4KICAgIDwvcGF0dGVybj4KICA8L2RlZnM+CiAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPgo8L3N2Zz4=');
}

.bilice-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
  padding: 0 1rem;
}

.bilice-hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bilice-hero-title {
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.bilice-hero-subtitle {
  font-size: 2.5rem;
  color: #3b82f6;
}

.bilice-hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.bilice-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.bilice-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.bilice-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bilice-gallery-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.bilice-gallery-item img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.bilice-details-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.bilice-investment-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%);
  color: white;
}

.bilice-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .bilice-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bilice-stat-item {
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s;
  position: relative;
}

.bilice-stat-item:hover {
  transform: translateY(-5px);
}

.bilice-stat-item::before {
  content: '';
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bilice-stat-item:nth-child(1)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZGU2OGEiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj4KPHJlY3QgeD0iMyIgeT0iMyIgd2lkdGg9IjE4IiBoZWlnaHQ9IjE4IiByeD0iMiIgcnk9IjIiLz4KPHBhdGggZD0iTTkgOWg2VjZIOXoiLz4KPC9zdmc+");
}

.bilice-stat-item:nth-child(2)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZGU2OGEiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj4KPHBhdGggZD0iTTMgOWE5IDkgMCAwIDEgOSAwdjExYTkgOSAwIDAgMS05IDBWOSE5eiIvPgo8cGF0aCBkPSJNMjEgMTJjMCA0LjktNCAxMS0xMS0xMSIvPgo8L3N2Zz4=");
}

.bilice-stat-item:nth-child(3)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZGU2OGEiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj4KPHBhdGggZD0iTTMgOWwuOTcgNS4yMWExLjUgMS41IDAgMCAwIDEuNDcgMS4yMWg5LjEyYTEuNSAxLjUgMCAwIDAgMS40Ny0xLjIxTDIxIDkiLz4KPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjMiLz4KPHBhdGggZD0iTTEyIDMgaDIiLz4KPHN2Zz4=");
}

.bilice-stat-item:nth-child(4)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZGU2OGEiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj4KPHBhdGggZD0iTTE0IDlWNWEzIDMgMCAwIDAtNiAwdjZIMTBhMyAzIDAgMCAwIDMgM3oiLz4KPHJlY3QgeD0iNiIgeT0iMTEiIHdpZHRoPSIxMyIgaGVpZ2h0PSI5IiByeD0iMiIgcnk9IjIiLz4KPGNpcmNsZSBjeD0iMTMiIGN5PSIxNiIgcj0iMSIvPgo8L3N2Zz4=");
}

.bilice-stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fde68a;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.bilice-stat-label {
  font-size: 1rem;
  color: #f3f4f6;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.02em;
}

/* Responsive styles for Bilice page */
@media (min-width: 768px) {
  .bilice-hero-title {
    font-size: 4.5rem;
  }

  .bilice-hero-subtitle {
    font-size: 3.75rem;
  }

  .bilice-hero-description {
    font-size: 1.5rem;
  }

  .bilice-hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .bilice-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (min-width: 1024px) {
  .bilice-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* New icon styling for Bilice statistics */
.bilice-stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bilice-stat-icon svg {
  color: #fde68a;
}

/* Hide old pseudo-element icons */
.bilice-stat-item::before {
  display: none !important;
}
/* Policy Pages Styles */
.main-content {
  min-height: 100vh;
  background: white;
}

.page-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #1f2937;
  margin-bottom: 2rem;
}

.content-wrapper {
  max-width: none;
}

.content-section {
  padding: 1rem 0;
}

.content-section.bg-white {
  background: white;
  padding: 5rem 0;
}

.section-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #1f2937;
  margin-bottom: 1rem;
}

.subsection-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #374151;
  margin-bottom: 0.75rem;
}

.content-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-list li {
  margin-bottom: 0.5rem;
  color: #4b5563;
}

.contact-info {
  background: #f3f4f6;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: #374151;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.info-box {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.info-box.blue {
  background: #eff6ff;
  border: 1px solid #dbeafe;
}

.info-box.green {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
}

.info-box.yellow {
  background: #fefce8;
  border: 1px solid #fde68a;
}

.info-box.purple {
  background: #faf5ff;
  border: 1px solid #e9d5ff;
}

.info-box.gray {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.text-gray-600 {
  color: #4b5563;
}

.max-w-4xl {
  max-width: 56rem;
}
