:root {
  /* Tetrad color scheme */
  --primary-color: #0f4c81; /* Deep blue */
  --secondary-color: #e63946; /* Vivid red */
  --tertiary-color: #4daa57; /* Rich green */
  --quaternary-color: #ffb400; /* Bright yellow */
  
  /* Shades and tints */
  --primary-dark: #0a3456;
  --primary-light: #2978c5;
  --secondary-dark: #c42836;
  --secondary-light: #f47782;
  --tertiary-dark: #378540;
  --tertiary-light: #7dcb85;
  --quaternary-dark: #cc9000;
  --quaternary-light: #ffd04d;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f2f2f2;
  --medium-gray: #cccccc;
  --dark-gray: #333333;
  --black: #111111;
  
  /* Neomorphic shadows */
  --nm-shadow-large: 16px 16px 32px rgba(0, 0, 0, 0.1), -16px -16px 32px rgba(255, 255, 255, 0.8);
  --nm-shadow-medium: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.8);
  --nm-shadow-small: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.8);
  --nm-shadow-inset: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.8);
  
  /* Typography */
  --heading-font: 'Archivo Black', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Spacing */
  --section-spacing: 80px;
  --card-spacing: 30px;
  --content-spacing: 20px;
  
  /* Border radius */
  --border-radius-large: 20px;
  --border-radius-medium: 15px;
  --border-radius-small: 10px;
  
  /* Transition */
  --transition-slow: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  --transition-medium: 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Base styles */
html {
  scroll-behavior: smooth;
}

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

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

p {
  margin-bottom: 1.5rem;
}

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

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

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

section {
  padding: 60px 0;
  position: relative;
}

.container {
  position: relative;
  z-index: 1;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

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

.section-subtitle {
  color: var(--dark-gray);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Neomorphic elements */
.neomorphic-header {
  background-color: var(--light-gray);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: all var(--transition-medium);
}

.neomorphic-card {
  background-color: var(--light-gray);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--nm-shadow-medium);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.neomorphic-panel {
  background-color: var(--light-gray);
  border-radius: var(--border-radius-medium);
  box-shadow: var(--nm-shadow-medium);
  padding: 30px;
  height: 100%;
}

.neomorphic-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-small);
  padding: 12px 30px;
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: var(--nm-shadow-small);
  position: relative;
  overflow: hidden;
}

.neomorphic-btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(15, 76, 129, 0.3);
}

.neomorphic-btn:active {
  box-shadow: var(--nm-shadow-inset);
  transform: translateY(0);
}

.neomorphic-btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: var(--border-radius-small);
  padding: 10px 28px;
  font-weight: 600;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.neomorphic-btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.3);
}

.neomorphic-accordion {
  border: none;
  background-color: var(--light-gray);
  margin-bottom: 15px;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}

.neomorphic-accordion .accordion-button {
  background-color: var(--light-gray);
  color: var(--dark-gray);
  box-shadow: var(--nm-shadow-small);
  font-weight: 600;
  padding: 15px 20px;
}

.neomorphic-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--light-gray);
  box-shadow: var(--nm-shadow-inset);
}

.neomorphic-accordion .accordion-body {
  padding: 20px;
  background-color: var(--white);
}

.neomorphic-input-container {
  position: relative;
  margin-bottom: 25px;
}

.neomorphic-input {
  background-color: var(--light-gray);
  border: none;
  border-radius: var(--border-radius-small);
  padding: 15px 20px;
  width: 100%;
  box-shadow: var(--nm-shadow-inset);
  transition: all var(--transition-fast);
}

.neomorphic-input:focus {
  outline: none;
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2), inset -4px -4px 8px rgba(255, 255, 255, 0.7);
  border-color: var(--primary-color);
}

/* Navbar */
.navbar-brand {
  font-family: var(--heading-font);
  color: var(--primary-color);
  font-size: 1.8rem;
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 10px 15px;
  transition: color var(--transition-fast);
  position: relative;
}

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

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium), left var(--transition-medium);
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
  left: 15%;
}

.navbar-toggler {
  border: none;
  padding: 10px;
  border-radius: var(--border-radius-small);
  box-shadow: var(--nm-shadow-small);
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: var(--nm-shadow-inset);
}

/* Hero Section */
.hero-section {
  padding: 0;
  margin-top: 80px;
  position: relative;
}

.hero-overlay {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 150px 0;
  text-align: center;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

/* Services Section */
.services-section {
  background-color: var(--light-gray);
}

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

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

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

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

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

.animated-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 24px;
  box-shadow: var(--nm-shadow-small);
  transition: transform var(--transition-medium), background-color var(--transition-medium);
}

.neomorphic-card:hover .animated-icon {
  transform: rotate(10deg) scale(1.1);
  background-color: var(--primary-color);
}

/* Vision Section */
.vision-section {
  padding: 0;
}

.vision-overlay {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.vision-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 76, 129, 0.8), rgba(15, 76, 129, 0.6));
}

.vision-content {
  padding: 40px;
  background-color: rgba(242, 242, 242, 0.95);
  border-radius: var(--border-radius-medium);
}

.vision-content h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
}

.vision-content p {
  color: var(--dark-gray);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* Partners Section */
.partners-section {
  background-color: var(--white);
}

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

.partner-card {
  text-align: center;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card img {
  height: 100px;
  width: auto;
  margin: 0 auto 20px;
  object-fit: contain;
}

.partner-card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Resources Section */
.resources-section {
  background-color: var(--light-gray);
}

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

.resource-item h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 10px;
}

.resource-item ul {
  padding-left: 0;
  list-style-type: none;
}

.resource-item ul li {
  margin-bottom: 10px;
}

.resource-item ul li a {
  color: var(--dark-gray);
  transition: color var(--transition-fast);
  display: block;
  padding: 8px;
  border-radius: var(--border-radius-small);
}

.resource-item ul li a:hover {
  color: var(--primary-color);
  background-color: rgba(15, 76, 129, 0.1);
  transform: translateX(5px);
}

/* News Section */
.news-section {
  background-color: var(--white);
}

.news-card {
  position: relative;
}

.news-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--border-radius-small);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 1;
}

.news-card .card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  min-height: 60px;
}

.news-card .card-content p {
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  align-self: flex-start;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.read-more:hover::after {
  width: 100%;
}

/* Careers Section */
.careers-section {
  background-color: var(--light-gray);
}

.careers-info h3,
.careers-opportunities h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.careers-info p {
  margin-bottom: 15px;
}

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

.contact-info h3,
.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-item .icon {
  flex: 0 0 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 20px;
  margin-right: 20px;
}

.contact-item .info {
  flex: 1;
}

.contact-item h4 {
  margin-bottom: 5px;
  color: var(--dark-gray);
  font-size: 1.2rem;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

/* Media Section */
.media-section {
  background-color: var(--light-gray);
}

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

.media-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  height: 250px;
}

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

.media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  /*opacity: 0;*/
  transform: translateY(20px);
  transition: opacity var(--transition-medium), transform var(--transition-medium);
}

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

.media-item:hover .media-overlay {
  opacity: 1;
  transform: translateY(0);
}

.media-overlay h4 {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.media-overlay p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Press Section */
.press-section {
  background-color: var(--white);
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--primary-light);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-date {
  flex: 0 0 30%;
  text-align: right;
  padding-right: 30px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-date {
  text-align: left;
  padding-right: 0;
  padding-left: 30px;
}

.timeline-date::after {
  content: '';
  position: absolute;
  top: 10px;
  right: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--quaternary-color);
  border: 4px solid var(--light-gray);
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-date::after {
  right: auto;
  left: -9px;
}

.timeline-content {
  flex: 0 0 30%;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius-small);
  box-shadow: var(--nm-shadow-small);
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.timeline-content p {
  margin-bottom: 15px;
}

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

.footer-info h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-info p {
  margin-bottom: 25px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links a {
  color: var(--white);
  font-weight: 500;
  transition: color var(--transition-fast);
  display: inline-block;
  padding: 5px 0;
}

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

.footer-links h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.3rem;
}

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

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: var(--white);
  opacity: 0.8;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-links ul li a:hover {
  opacity: 1;
  transform: translateX(5px);
  color: var(--quaternary-light);
}

.footer-newsletter h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-newsletter p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: var(--white);
  opacity: 0.7;
  font-size: 0.9rem;
  transition: opacity var(--transition-fast);
}

.legal-links a:hover {
  opacity: 1;
  color: var(--quaternary-light);
}

/* Cookie Consent */
#cookieConsent {
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

#acceptCookies {
  margin-left: 10px;
  padding: 8px 20px;
  background-color: var(--primary-color);
  border: none;
}

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

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  color: var(--white);
  font-size: 50px;
  box-shadow: var(--nm-shadow-medium);
}

/* About, Privacy, Terms Pages */
.page-content {
  padding-top: 150px;
  padding-bottom: 80px;
}

.page-header {
  margin-bottom: 50px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Animations */
[data-animation] {
  /*opacity: 0;*/
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0.3, 1.5), 
              transform 0.8s cubic-bezier(0.5, 0, 0.3, 1.5);
}

[data-animation="fadeInUp"] {
  transform: translateY(50px);
}

[data-animation="fadeInLeft"] {
  transform: translateX(-50px);
}

[data-animation="fadeInRight"] {
  transform: translateX(50px);
}

.animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* Parallax Effect */
.parallax-section {
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .timeline::before {
    left: 40px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
  }
  
  .timeline-date,
  .timeline-item:nth-child(odd) .timeline-date {
    flex: 0 0 100px;
    text-align: right;
    padding-right: 30px;
    padding-left: 0;
  }
  
  .timeline-date::after,
  .timeline-item:nth-child(odd) .timeline-date::after {
    right: -9px;
    left: auto;
  }
  
  .timeline-content {
    flex: 0 0 calc(100% - 130px);
  }
}

@media (max-width: 991.98px) {
  section {
    padding: 50px 0;
  }
  
  .hero-section {
    margin-top: 76px;
  }
  
  .hero-overlay {
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .partners-grid,
  .resources-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .footer-info,
  .footer-links,
  .footer-newsletter {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .hero-overlay {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .partners-grid,
  .resources-grid,
  .media-gallery {
    grid-template-columns: 1fr;
  }
  
  .timeline-date,
  .timeline-item:nth-child(odd) .timeline-date {
    flex: 0 0 80px;
    font-size: 1rem;
  }
  
  .timeline-content {
    flex: 0 0 calc(100% - 110px);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .copyright {
    margin-bottom: 15px;
  }
  
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  section {
    padding: 40px 0;
  }
  
  .hero-overlay {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .neomorphic-panel {
    padding: 20px;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-date,
  .timeline-item:nth-child(odd) .timeline-date {
    flex: 0 0 60px;
    padding-right: 15px;
  }
  
  .timeline-date::after,
  .timeline-item:nth-child(odd) .timeline-date::after {
    width: 14px;
    height: 14px;
    right: -7px;
  }
  
  .timeline-content {
    flex: 0 0 calc(100% - 75px);
  }
}

/* Icons (placeholders for icon fonts or SVGs) */
[class^="icon-"] {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-strategy::before {
  content: "📊";
}

.icon-market::before {
  content: "🌐";
}

.icon-finance::before {
  content: "💰";
}

.icon-legal::before {
  content: "⚖️";
}

.icon-operations::before {
  content: "⚙️";
}

.icon-digital::before {
  content: "💻";
}

.icon-location::before {
  content: "📍";
}

.icon-phone::before {
  content: "📞";
}

.icon-email::before {
  content: "✉️";
}

.icon-clock::before {
  content: "🕒";
}

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

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

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