@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');

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

body {
  margin: 0;
  padding: 0;
}

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

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

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-fade-in-scale {
  animation: fadeInScale 0.6s ease-out forwards;
}

.animate-slide-in {
  animation: slideIn 0.7s ease-out forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Scroll-triggered animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Animation delays */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

:root {
  --primary-color: #000037;
  --primary-rgb: 0, 0, 55;
  --secondary-color: #ffffff;
  --accent-color: #000037;
  --text-primary: #000037;
  --text-secondary: #333355;
  --text-muted: #666688;
  --text-light: #9999aa;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f8fc;
  --bg-dark: #000037;
  --border-color: #e0e0ec;
  --border-light: #f0f0f8;
}

* {
  font-family: 'Barlow', Helvetica Neue, Arial, sans-serif !important;
}

body {
  background-color: var(--bg-primary) !important;
  color: var(--text-primary) !important;
}

html {
  font-family: 'Barlow', Helvetica Neue, Arial, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow', Helvetica Neue, Arial, sans-serif !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

p, span, a, li, button {
  font-family: 'Barlow', Helvetica Neue, Arial, sans-serif !important;
  font-weight: 500 !important;
  color: var(--text-secondary) !important;
}

.bg-dark-950,
.bg-dark-900,
.bg-dark-800 {
  background-color: var(--bg-secondary) !important;
}

.text-dark-100,
.text-dark-200,
.text-dark-300,
.text-dark-400,
.text-dark-500,
.text-dark-600 {
  color: var(--text-primary) !important;
}

.text-dark-400 {
  color: var(--text-muted) !important;
}

.text-dark-500 {
  color: var(--text-light) !important;
}

.bg-gradient-hero {
  background-image: linear-gradient(180deg, #ffffff, #f8f8fc 40%, #f0f0f8) !important;
}

.bg-gradient-steel {
  background-image: linear-gradient(135deg, #000037, #000044, #000055) !important;
}

.text-gradient-steel {
  background: linear-gradient(135deg, #000037, #1a1a55, #2a2a66) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.bg-glass {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(0, 0, 55, 0.05) !important;
}

.bg-steel-500 {
  background-color: var(--primary-color) !important;
}

.text-steel-400,
.text-steel-500 {
  color: var(--primary-color) !important;
}

.border-steel-500,
.border-steel-500\/30,
.border-steel-500\/50 {
  border-color: rgba(var(--primary-rgb), 0.3) !important;
}

.border-dark-700,
.border-dark-800\/50 {
  border-color: var(--border-color) !important;
}

.shadow-elevated {
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 55, 0.1) !important;
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.shadow-steel {
  --tw-shadow: 0 0 40px rgba(0, 0, 55, 0.1) !important;
  --tw-shadow-colored: 0 0 40px var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.hover\:bg-dark-800\/50:hover {
  background-color: rgba(0, 0, 55, 0.05) !important;
}

.hover\:text-steel-300:hover,
.hover\:text-steel-400:hover {
  color: var(--primary-color) !important;
}

.group:hover .group-hover\:text-steel-300 {
  color: var(--primary-color) !important;
}

.group:hover .group-hover\:bg-steel-500\/20 {
  background-color: rgba(0, 0, 55, 0.1) !important;
}

.fill-copper-400 {
  fill: var(--primary-color) !important;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-light) !important;
}

.noise-overlay {
  opacity: 0.01 !important;
}

button {
  color: var(--secondary-color) !important;
}

button.bg-steel-500,
button.bg-dark-900 {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
}

button:hover {
  opacity: 0.9 !important;
}

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

a:hover {
  color: var(--accent-color) !important;
}

nav,
.navigation,
.navbar,
header,
.header,
.header-container {
  background-color: #000037 !important;
  background-image: none !important;
  border-bottom: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  position: relative !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

nav::after,
.navigation::after,
.navbar::after,
header::after,
.header::after,
.header-container::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 55, 0.1), transparent);
}

nav.fixed,
.navigation.fixed,
.navbar.fixed,
header.fixed,
.header.fixed,
.header-container.fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999 !important;
}

nav a,
.navigation a,
.navbar a {
  color: #ffffff !important;
  font-weight: 600 !important;
}

nav a:hover,
.navigation a:hover,
.navbar a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
  opacity: 1;
}

nav .logo,
.navbar .logo,
.navigation .logo {
  color: #000037 !important;
}

nav .logo img,
.navbar .logo img,
.navigation .logo img {
  filter: brightness(0) saturate(100%) invert(6%) sepia(98%) saturate(2486%) hue-rotate(233deg) brightness(93%) contrast(101%);
}

nav .logo svg,
.navbar .logo svg,
.navigation .logo svg {
  fill: #000037 !important;
  color: #000037 !important;
}

header .logo,
.header .logo,
header a[href="/"],
.header a[href="/"] {
  color: #000037 !important;
}

header .logo img,
.header .logo img,
header a[href="/"] img,
.header a[href="/"] img {
  filter: brightness(0) saturate(100%) invert(6%) sepia(98%) saturate(2486%) hue-rotate(233deg) brightness(93%) contrast(101%);
}

header .logo svg,
.header .logo svg,
header a[href="/"] svg,
.header a[href="/"] svg {
  fill: #000037 !important;
  color: #000037 !important;
}

section,
footer {
  background-color: var(--bg-primary) !important;
}

.card,
.card-container {
  background-color: var(--secondary-color) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 1rem !important;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-primary:hover {
  background-color: #000044 !important;
  border-color: #000044 !important;
}

.btn-secondary {
  background-color: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-color) !important;
}

.btn-secondary:hover {
  background-color: var(--border-light) !important;
}

.form-control,
input,
textarea,
select {
  background-color: var(--secondary-color) !important;
  border-color: var(--border-color) !important;
  color: var(--text-primary) !important;
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 2px rgba(0, 0, 55, 0.1) !important;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 55, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 55, 0.4);
}

.language-switcher {
  position: relative;
  display: inline-block;
}

.language-switcher .lang-toggle {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #000037 !important;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-switcher .lang-toggle:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.language-switcher .lang-toggle .arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.language-switcher.open .lang-toggle .arrow {
  transform: rotate(180deg);
}

.language-switcher .lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 4px;
  min-width: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.language-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher .lang-dropdown li {
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #000037 !important;
  transition: all 0.2s ease;
}

.language-switcher .lang-dropdown li:hover {
  background-color: rgba(0, 0, 55, 0.05);
}

.language-switcher .lang-dropdown li.active {
  background-color: #000037;
  color: #ffffff !important;
}

nav {
  padding: 0 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 100px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: rgba(0, 0, 55, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999 !important;
}

nav .navbar-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

nav .navbar-logo img {
  height: 70px;
  width: auto;
  display: block;
}

nav .navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 60px;
}

nav .navbar-links {
  display: flex;
  gap: 25px;
}

nav .navbar-lang {
  position: relative;
  display: inline-block;
}

nav .navbar-lang .lang-toggle {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

nav .navbar-lang .lang-toggle:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

nav .navbar-lang .lang-toggle .arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

nav .navbar-lang.open .lang-toggle .arrow {
  transform: rotate(180deg);
}

nav .navbar-lang .lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 8px;
  min-width: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

nav .navbar-lang.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

nav .navbar-lang .lang-dropdown li {
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #000037;
  text-align: center;
  transition: all 0.2s ease;
}

nav .navbar-lang .lang-dropdown li:hover {
  background-color: rgba(0, 0, 55, 0.05);
}

nav .navbar-lang .lang-dropdown li.active {
  background-color: #000037;
  color: #ffffff !important;
}

nav .navbar-links a {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.25s ease;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

nav .navbar-links a:hover {
  color: rgba(255, 255, 255, 0.9) !important;
  background-color: rgba(255, 255, 255, 0.15);
}

nav .navbar-links a.active {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.2);
}

nav .navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
}

/* Mobile menu styles */
.mobile-menu-btn {
  display: none;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 55, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: #000037;
  z-index: 1000;
  padding-top: 100px;
  transition: right 0.3s ease;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-links a {
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 15px 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 40px;
}

.banner-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
}

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

.banner-slide-content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
  padding: 20px;
  max-width: 700px;
}

.banner-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 55, 0.4);
}

.banner-slide-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-slide-content h2 {
  font-size: 28px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-slide-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.8;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-cta {
  display: inline-block;
  padding: 16px 36px;
  background-color: #ffffff;
  color: #000037 !important;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: none;
}

.banner-cta:hover {
  background-color: #f0f0f8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.banner-nav {
  display: flex;
  gap: 12px;
  margin-top: 70px;
}

.banner-nav button {
  width: auto;
  height: auto;
  padding: 8px 4px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #ffffff !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  line-height: 1;
}

.banner-nav button:hover {
  opacity: 0.7;
  transform: translateX(-3px);
}

.banner-nav button:last-child:hover {
  transform: translateX(3px);
}

.banner-nav button:active {
  opacity: 0.5;
}

.banner-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.banner-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-indicator.active {
  width: 32px;
  border-radius: 6px;
  background: #ffffff;
}

@media (max-width: 768px) {
  .banner-slide-content {
    top: 50%;
    left: 15px;
    right: 15px;
    padding: 10px;
  }
  
  .banner-slide-content h1 {
    font-size: 32px;
  }
  
  .banner-slide-content h2 {
    font-size: 18px;
  }
  
  .banner-slide-content p {
    font-size: 16px;
  }
  
  .banner-cta {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .banner-nav {
    left: 5%;
    bottom: 80px;
  }
  
  .banner-nav button {
    padding: 6px 3px;
  }
  
  .banner-indicators {
    bottom: 20px;
  }
}

.section-scroll-btn {
  display: none !important;
}

/* Parallax scroll effect */
.banner-section {
  position: relative;
  overflow: hidden;
}

/* Card hover effects */
.brands-list .brand-item {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



.event-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 55, 0.12);
}

/* Navigation link hover effects */
nav .navbar-links a {
  position: relative;
  overflow: hidden;
}

nav .navbar-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

nav .navbar-links a:hover::before {
  width: 100%;
}

/* Button shimmer effect */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

/* Section title animation */
.section-title {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.section-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-title.visible span {
  opacity: 1;
  transform: translateY(0);
}

/* Section underline animation - full width */
.section-container {
  position: relative;
}

/* Remove underline from contact section */
.contact-section .section-title::before,
.contact-section .section-title::after {
  display: none;
}

/* Section title underline animation */
.section-title {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.section-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-title.visible span {
  opacity: 1;
  transform: translateY(0);
}

/* Underline background track */
.section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 55, 0.3);
  border-radius: 2px;
}

/* Underline progress bar */
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #000037;
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(0, 0, 55, 0.6);
}

.section-title.visible::after {
  width: 100%;
  animation: progressBarGlow 1.2s ease-in-out;
}

@keyframes progressBarGlow {
  0% {
    box-shadow: 0 0 10px rgba(0, 0, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 0, 55, 0.8), 0 0 40px rgba(0, 0, 55, 0.4);
  }
  100% {
    box-shadow: 0 0 15px rgba(0, 0, 55, 0.6);
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

.section-nav-toggle {
  display: none !important;
}

.section-nav-toggle.show {
  right: 20px;
}

.section-nav-toggle:hover {
  background: #000037;
  transform: translateY(-50%) scale(1.1);
}

.section-nav-toggle.open {
  right: 250px;
  background: rgba(0, 0, 55, 0.95);
}

.section-nav-overlay {
  display: none !important;
}

.section-nav {
  display: none !important;
}

.section-nav.open {
  right: 0;
}

.section-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 16px 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
  opacity: 0.6;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 55, 0.05);
}

.section-nav-item:last-child {
  border-bottom: none;
}

.section-nav-item:hover {
  opacity: 1;
  background: rgba(0, 0, 55, 0.03);
}

.section-nav-item.active {
  opacity: 1;
  background: rgba(0, 0, 55, 0.08);
}

.section-nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #000037;
}

.section-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 55, 0.2);
  border: 2px solid rgba(0, 0, 55, 0.3);
  transition: all 0.3s ease;
}

.section-nav-item.active .section-nav-dot {
  background: #000037;
  border-color: #000037;
}

.section-nav-label {
  font-size: 13px;
  font-weight: 600;
  color: #000037 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .section-nav-toggle {
    right: -60px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .section-nav-toggle.show {
    right: 10px;
  }
  
  .section-nav-toggle.open {
    right: 200px;
  }
  
  .section-nav {
    width: 200px;
    right: -200px;
  }
  
  .section-nav-item {
    padding: 12px 16px;
  }
  
  .section-nav-label {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  
  .section-nav-dot {
    width: 8px;
    height: 8px;
  }
}

.section-container {
  max-width: none;
  margin: 0;
  padding: 20px 60px;
}

@media (max-width: 1400px) {
  nav {
    padding: 0 40px !important;
  }
  .section-container {
    padding: 20px 40px;
  }
  .banner-slide-content {
    left: 40px;
  }
}

@media (max-width: 1024px) {
  nav {
    padding: 0 30px !important;
  }
  .section-container {
    padding: 20px 30px;
  }
  .banner-slide-content {
    left: 30px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 15px !important;
  }
  .section-container {
    padding: 20px 15px;
  }
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #000037 !important;
  margin-bottom: 8px;
  padding-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block !important;
  position: relative !important;
}

.company-section {
  background-color: #ffffff !important;
  box-sizing: border-box;
  padding-top: 30px;
}

.company-content {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

.company-logo {
  flex-shrink: 0;
  width: 45%;
  display: flex;
  align-items: stretch;
}

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

.company-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  padding-top: 0;
  height: auto;
}

.brand-name {
  font-size: 32px;
  font-weight: 700;
  color: #333333 !important;
  letter-spacing: 0.15em;
  text-align: center;
}

.brand-icon svg {
  opacity: 0.8;
  width: 100px;
  height: 100px;
}

.rr-text {
  font-size: 20px;
  font-weight: 700;
  color: #333333 !important;
  letter-spacing: 0.2em;
}

.rr-sub {
  font-size: 12px;
  color: #666666 !important;
  letter-spacing: 0.25em;
  margin-top: 6px;
}

.company-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding-top: 0;
  min-width: 0;
}

.company-name {
  margin-bottom: 10px;
}

.company-name-main {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #000037 !important;
  letter-spacing: 0.05em;
}

.company-description {
  font-size: 24px;
  line-height: 1.4;
  color: #000037 !important;
  font-weight: 600;
  margin: 16px 0 0;
}

.company-certifications {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.company-certifications span {
  padding: 8px 20px;
  background-color: #000037;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
}

.company-name-sub {
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: #606266 !important;
  margin-top: 10px;
}

.company-heading-wrap {
  margin-bottom: 20px;
}

.company-heading-label {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #000037 !important;
  padding-bottom: 8px;
  border-bottom: 3px solid #006680;
  width: fit-content;
  margin-bottom: 18px;
}

.company-heading {
  font-size: 30px;
  font-weight: 700;
  color: #000037 !important;
  line-height: 1.1;
  margin: 0;
}

.company-heading-light {
  font-weight: 400;
}

.company-address {
  font-size: 19px;
  color: #666688 !important;
  line-height: 1.7;
}

.company-email {
  font-size: 19px;
  color: #666688 !important;
}

.company-email a {
  color: #000037 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
}

.company-email a:hover {
  text-decoration: underline;
}

.company-social {
  font-size: 19px;
  color: #666688 !important;
}

.company-copyright {
  font-size: 14px;
  color: #9999aa !important;
  margin-top: auto;
}

.brands-section {
  background-color: #f8f8fc !important;
  padding: 0;
}

.brands-section .scroll-animate {
  opacity: 1 !important;
  transform: none !important;
}

.brands-section {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 50%, #dce5f0 100%) !important;
  padding: 30px 0 40px 0;
}

.brands-section .section-title span {
  color: #000037 !important;
}

.brands-description {
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #000037 !important;
  margin: 16px 0 0;
}

.brands-list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .brands-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .brands-list {
    grid-template-columns: 1fr !important;
  }
}

.brand-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 30, 80, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 480px;
}

.brand-item--blue .brand-content {
  background: linear-gradient(0deg, #000037 0%, #1a2a6c 100%);
}

.brand-item--blue .brand-content h3 {
  color: #ffffff !important;
}

.brand-item--blue .brand-content h3 sup {
  color: #6ba3e0;
}

.brand-item--blue .brand-content p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.brand-item--white .brand-content {
  background-color: #ffffff;
}

.brand-item--white .brand-content h3 {
  color: #000037 !important;
}

.brand-item--white .brand-content h3 sup {
  color: #1e5fa8;
}

.brand-item--white .brand-content p {
  color: #4a5a6c !important;
}

.brand-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 30, 80, 0.15);
}

.brand-image-wrapper {
  width: 100%;
  position: relative;
}

.brand-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f7fa;
}

.brand-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.brand-item:hover .brand-image-frame img {
  transform: scale(1.05);
}

.brand-content {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000037 !important;
  min-height: 140px;
}

.brand-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000037 !important;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.brand-content h3 sup {
  font-size: 14px;
  color: #1e5fa8;
}

.brand-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5a6c !important;
  margin: 0;
}

.brand-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #1e5fa8 !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.brand-link:hover {
  color: #003366 !important;
  text-decoration: underline;
}

.values-section {
  background-color: #ffffff !important;
  padding-top: 30px;
}

.values-tagline {
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  color: #000037 !important;
  margin-bottom: 20px;
}

.values-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.values-carousel {
  position: relative;
  width: 100%;
  height: 500px;
}

.values-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.values-slide.active {
  opacity: 1;
}

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

.values-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 55, 0.7) 0%, rgba(0, 0, 55, 0.3) 100%);
  display: flex;
  align-items: center;
  padding: 60px;
}

.values-slide-content {
  max-width: 600px;
}

.slide-number {
  display: block;
  font-size: 64px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3) !important;
  line-height: 1;
}

.values-slide-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff !important;
  margin: 16px 0;
}

.values-slide-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 20px;
}

.slide-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7) !important;
}

.values-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.values-nav button {
  width: auto;
  height: auto;
  padding: 8px 4px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #ffffff !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  line-height: 1;
}

.values-nav button:hover {
  opacity: 0.7;
  transform: translateX(-3px);
}

.values-nav button:last-child:hover {
  transform: translateX(3px);
}

.values-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.values-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.values-indicator.active {
  width: 32px;
  border-radius: 6px;
  background: #000037;
}

.digital-catalogue-section {
  background-image: url('https://www.blue-print.com/medien/_processed_/a/a/csm_Blue_Print_image_newsletter_2400x844_ec4a884380.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  position: relative;
}

.digital-catalogue-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 55, 0.5);
  z-index: 1;
}

.catalogue-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 400px;
  padding: 60px;
}

.catalogue-text {
  max-width: 700px;
}

.catalogue-text .section-title {
  margin-bottom: 20px;
}

.catalogue-text .section-title span {
  color: #ffffff !important;
  font-size: 36px;
  font-weight: 700;
}

.catalogue-description {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 30px;
  font-weight: 500;
}

.catalogue-search {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.search-input {
  width: 100%;
  max-width: 450px;
  padding: 18px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.search-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.catalogue-link {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  line-height: 1.5;
}

.catalogue-link:visited,
.catalogue-link:active {
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .catalogue-content {
    padding: 40px 15px;
    min-height: 350px;
  }
  
  .catalogue-text .section-title span {
    font-size: 32px;
  }
  
  .catalogue-description {
    font-size: 18px;
  }
  
  .catalogue-search {
    flex-direction: column;
    width: 100%;
  }
  
  .search-input {
    max-width: 100%;
    width: 100%;
  }
  
  .search-button {
    width: 100%;
    text-align: center;
  }
}

.quality-section {
  background-color: #ffffff !important;
  padding: 40px 0;
}


.quality-text {
  max-width: 800px;
}

.quality-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #000037 !important;
  margin-bottom: 16px;
}

.quality-text p:first-child {
  font-size: 28px;
  font-weight: 600;
}

.quality-events {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.event-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 40px 45px 55px;
  min-height: 350px;
  background-color: #1a1a2e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.event-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 55, 0.92) 0%, rgba(26, 26, 46, 0.75) 100%);
  z-index: 0;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ffffff, #000037);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.event-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.event-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.event-card.visible .event-header {
  transform: translateY(0);
  opacity: 1;
}

.event-date {
  background-color: #000037;
  color: #ffffff !important;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.event-card:hover .event-date {
  background-color: #1a1a55;
  transform: scale(1.05);
}

.event-location {
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.event-card:hover .event-location {
  background-color: rgba(0, 0, 55, 0.1);
}

.event-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 20px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
  position: relative;
  z-index: 1;
}

.event-card.visible .event-title {
  transform: translateY(0);
  opacity: 1;
}

.event-description {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9) !important;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.2s;
  position: relative;
  z-index: 1;
}

.event-card.visible .event-description {
  transform: translateY(0);
  opacity: 1;
}

.contact-section {
  background: linear-gradient(180deg, #000037 0%, #0a0a4a 50%, #1a1a5e 100%) !important;
  padding: 40px 0 0 0;
}

.contact-content {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 0;
}

.contact-logo img {
  height: 70px;
  width: auto;
  display: block;
}

.contact-brands {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.contact-brands .brand-icon {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7) !important;
  letter-spacing: 0.05em;
}

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

.contact-column h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-column p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-column a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-top: 8px;
  transition: background 0.3s ease;
}

.contact-column a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-column a svg,
.contact-column a img {
  width: 18px;
  height: 18px;
  fill: #1877F2;
}

.contact-copyright {
  text-align: center;
  padding: 30px 0 10px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6) !important;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  /* Navigation mobile styles */
  nav {
    height: 80px !important;
  }
  
  nav .navbar-logo img {
    height: 50px !important;
  }
  
  nav .navbar-links {
    display: none !important;
  }
  
  nav .navbar-right {
    gap: 15px !important;
  }
  
  /* Mobile menu button */
  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  
  .mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }
  
  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .company-content {
    flex-direction: column;
    gap: 25px;
  }
  
  .company-name-main {
    font-size: 26px;
  }
  
  .company-address,
  .company-email {
    font-size: 15px;
  }
  
  .brand-name {
    font-size: 24px;
  }
  
  .brand-icon svg {
    width: 70px;
    height: 70px;
  }
  
  .brand-item,
    .brand-item-reverse {
    flex-direction: column;
    gap: 20px;
  }
  
  .brand-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 30px;
  }
  
  .brand-image {
    width: 100%;
  }
  
  .brand-image img {
    height: 200px;
  }
  
  .values-carousel {
    height: 400px;
  }
  
  .values-slide-overlay {
    padding: 30px;
  }
  
  .slide-number {
    font-size: 48px;
  }
  
  .values-slide-content h3 {
    font-size: 24px;
  }
  
  /* Quality First mobile styles */
  .quality-events {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .event-card {
    padding: 20px;
    border-radius: 10px;
  }
  
  .event-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 15px;
  }
  
  .event-date {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .event-location {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .event-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .event-description {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .quality-text p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .quality-text p:first-child {
    font-size: 22px;
    font-weight: 600;
  }
  
  .quality-content {
    margin-top: 30px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .contact-logo {
    padding: 0;
  }
  
  .contact-logo img {
    height: 50px !important;
  }
  
  .contact-column h3 {
    font-size: 14px;
  }
  
  .contact-column p {
    font-size: 14px;
  }
}