/* Custom CSS for Indo Global Servistama Website */
/* Inspired by Framer Design System */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap");

:root {
  /* Color palette inspired by Framer design */
  --primary-color: #0e1c29;
  --primary-light: #f6fbff;
  --accent-color: #774be5;
  --secondary-color: #d8dfe5;
  --text-dark: #0e1c29;
  --text-light: #5e788f;
  --white: #ffffff;
  --background-pattern: #f0f8ff;

  /* Original color backup */
  --blue-gradient-start: #4a90e2;
  --blue-gradient-middle: #5ba3f5;
  --blue-gradient-end: #6fb8ff;
}

/* Global Styles */
body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  padding-top: 0; /* Remove padding since nav is positioned differently */
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure consistent white background */
.bg-white {
  background-color: var(--white) !important;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #6142d4 100%);
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 15px rgba(119, 75, 229, 0.25);
  color: white;
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6142d4 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0px 8px 25px rgba(119, 75, 229, 0.4);
  color: white;
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  background: transparent;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(14, 28, 41, 0.25);
}

.btn-light {
  background: white;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: var(--primary-light);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Navigation Styles - Exact Framer Style */
.navbar {
  background-color: rgba(245, 250, 255, 0);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 12px;
  transition: all 0.3s ease;
  padding: 0.5rem 1.5rem;
  z-index: 1000;
  margin: 0 auto;
  max-width: 1000px;
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  border: none;
  box-shadow: none;
}

/* Scrolled navbar gets slight background */
.navbar.scrolled {
  background-color: rgba(245, 250, 255, 0.9);
  box-shadow: 0 4px 24px rgba(14, 28, 41, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Styling - Clean and Modern */
.navbar-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 28px;
  width: auto;
  transition: all 0.3s ease;
}

.brand-text {
  color: var(--primary-color);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-left: 6px;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.8px;
}

.brand-subtitle {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1;
  margin-top: 2px;
  opacity: 0.8;
  text-transform: uppercase;
}

/* Navigation Links - Framer Style */
.navbar-nav {
  margin-left: auto;
}

.nav-link {
  font-weight: 600;
  font-size: 12px;
  margin: 0 6px;
  padding: 8px 12px !important;
  color: var(--primary-color) !important;
  text-transform: none;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
  opacity: 0.9;
}

.nav-link:hover {
  background: rgba(216, 223, 229, 0.4);
  color: var(--primary-color) !important;
  opacity: 1;
  transform: translateY(-1px);
}

.nav-link.active {
  background: rgba(119, 75, 229, 0.1);
  color: var(--accent-color) !important;
  opacity: 1;
}

/* Mobile Toggle Button */
.navbar-toggler {
  border: 2px solid var(--secondary-color);
  padding: 6px 10px;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(119, 75, 229, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2814, 28, 41, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .navbar {
    width: calc(100% - 15px);
    top: 8px;
    padding: 0.4rem 1rem;
  }

  .navbar-collapse {
    background: rgba(245, 250, 255, 0.95);
    margin-top: 10px;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 8px 30px rgba(14, 28, 41, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(216, 223, 229, 0.3);
  }

  .nav-link {
    margin: 3px 0;
    text-align: center;
    border-radius: 8px;
  }

  .navbar-brand img {
    height: 24px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-subtitle {
    font-size: 6px;
  }

  .hero-section {
    padding: 120px 20px 0;
  }
}

/* Hero Section - Centered Slider with Overlay */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    #f0f8ff 50%,
    white 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 100px;
  padding: 100px 60px 10px 60px; /* Top, Right, Bottom, Left padding */
}

/* Hero Slider Container */
.hero-slider-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero-section .carousel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(14, 28, 41, 0.15);
}

.hero-section .carousel-item img {
  height: 600px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Text Overlay */
.hero-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  border-radius: 20px;
  padding: 40px;
  pointer-events: none; /* Allow clicks to pass through */
}

.hero-text-overlay .text-center {
  pointer-events: auto; /* Re-enable clicks on the text content */
}

.hero-text-overlay h1 {
  font-size: 3.2rem;
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text-overlay .lead {
  font-size: 1.2rem;
  font-weight: 500;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text-overlay .btn {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
}

.hero-text-overlay .btn-outline-light {
  border-color: white;
  color: white;
  background: transparent;
}

.hero-text-overlay .btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="126" height="126"><path id="a" d="M126 0v21.584L21.584 126H0v-17.585L108.415 0H126Zm0 108.414V126h-17.586L126 108.414Zm0-84v39.171L63.585 126H24.414L126 24.414Z" fill="rgba(14,28,41,0.03)"/></svg>');
  background-size: 64px auto;
  background-repeat: repeat;
  background-position: left top;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}

/* Ensure carousel items are properly displayed */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
} /* Card Styles - Framer Inspired */
.card {
  border: none;
  border-radius: 16px;
  transition: all 0.4s ease;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 20px rgba(14, 28, 41, 0.08);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(14, 28, 41, 0.15);
}

/* Global Image Responsiveness */
img {
  max-width: 100%;
  height: auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Card Images */
.card-img-top {
  height: 280px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  width: 100%;
}

.card:hover .card-img-top {
  transform: scale(1.03);
}

.card-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.card-text {
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.6;
}

.card-body {
  padding: 1.8rem;
}

/* Section Spacing and Typography */
section {
  padding: 100px 0;
}

.section-title {
  position: relative;
  margin-bottom: 60px;
}

.section-title h2 {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 2.8rem;
  line-height: 1.2;
}

.section-title .lead {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Background variations */
.bg-light-custom {
  background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
}

.bg-primary-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a2b38 100%);
  color: white;
}

.bg-primary-section h2,
.bg-primary-section h3,
.bg-primary-section h4 {
  color: white;
}

.bg-primary-section .lead {
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Carousel Specific Styles */
.hero-section .carousel-indicators {
  bottom: 25px;
  margin-bottom: 0;
  z-index: 20;
  cursor: pointer;
}

.hero-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}

.hero-section .carousel-indicators button.active {
  background-color: white;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 20;
  cursor: pointer;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.hero-section .carousel-control-prev {
  left: 20px;
}

.hero-section .carousel-control-next {
  right: 20px;
}

/* Regular Carousel Styles for other sections */
.carousel {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.carousel-indicators {
  bottom: 20px;
  margin-bottom: 0;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: white;
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(14, 28, 41, 0.7);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: rgba(14, 28, 41, 0.9);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

/* Prevent image loading flicker */
.carousel-item img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.carousel-item img.loaded,
.carousel-item.active img {
  opacity: 1;
} /* Form Styles - Framer Enhanced */
.form-control {
  border-radius: 12px;
  border: 2px solid var(--secondary-color);
  padding: 14px 20px;
  transition: all 0.3s ease;
  font-weight: 500;
  background: white;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(119, 75, 229, 0.25);
  background: white;
}

.form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Footer Styles - Framer Inspired */
footer {
  background: var(--primary-color);
  color: white;
}

footer h5,
footer h6 {
  color: white;
  font-weight: 700;
}

footer a {
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

footer a:hover {
  color: white !important;
  transform: translateY(-1px);
}

footer .text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Animation Classes - Framer Inspired */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text animations */
.text-animate {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(5px);
  transition: all 0.6s ease;
}

.text-animate.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Hover effects for interactive elements */
.interactive-element {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
  transform: translateY(-2px);
}

/* Custom utility classes inspired by Framer */
.backdrop-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.shadow-framer {
  box-shadow: 0 10px 40px rgba(14, 28, 41, 0.1);
}

.shadow-framer-lg {
  box-shadow: 0 20px 60px rgba(14, 28, 41, 0.15);
}

.rounded-framer {
  border-radius: 16px;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive Design - Tablet */
@media (max-width: 992px) and (min-width: 769px) {
  .hero-section .carousel-item img {
    height: 500px;
    object-fit: cover;
    object-position: center;
  }

  .card-img-top {
    height: 240px;
    object-fit: cover;
    object-position: center;
  }

  .brand-logo img {
    max-height: 55px;
  }
}

/* Desktop and Large Screen Responsive */
@media (min-width: 1200px) {
  .hero-section .carousel-item img {
    height: 650px;
  }

  .card-img-top {
    height: 300px;
  }
}

/* Responsive Design - Mobile Hero */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 30px 60px 30px;
  }

  .hero-section .carousel-item img {
    height: 550px;
  }

  .hero-text-overlay h1 {
    font-size: 2.2rem;
  }

  .hero-text-overlay .lead {
    font-size: 1rem;
  }

  .hero-text-overlay {
    padding: 20px;
  }

  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .hero-section .carousel-control-prev {
    left: 15px;
  }

  .hero-section .carousel-control-next {
    right: 15px;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  section {
    padding: 70px 0;
  }

  .btn-lg {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .card-img-top {
    height: 220px;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }

  .d-flex.gap-3 {
    justify-content: center !important;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.1rem;
  }

  .hero-section {
    padding: 80px 20px 50px 20px;
  }

  .hero-section .carousel-item img {
    height: 450px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    display: block;
  }

  .hero-text-overlay h1 {
    font-size: 1.8rem;
  }

  .hero-text-overlay .lead {
    font-size: 0.95rem;
  }

  .hero-text-overlay {
    padding: 15px;
  }

  .d-flex.gap-3 {
    flex-direction: column;
    gap: 1rem !important;
  }

  .card-img-top {
    height: 200px;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  section {
    padding: 60px 0;
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Custom Utility Classes */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

.shadow-custom {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.border-radius-custom {
  border-radius: 15px;
}

/* Hover Effects */
.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Social Media Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  color: white;
}

/* Custom Scrollbar - Framer Style */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--primary-light);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6142d4;
}

/* Additional utility classes */
.bg-glass {
  background: rgba(246, 251, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(216, 223, 229, 0.3);
}

.text-primary-framer {
  color: var(--primary-color) !important;
}

.text-accent-framer {
  color: var(--accent-color) !important;
}

.border-framer {
  border: 2px solid var(--secondary-color) !important;
}

/* Enhanced focus states */
.form-control:focus,
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(119, 75, 229, 0.25);
}

/* Loading state for images */
.img-loading {
  background: linear-gradient(
    90deg,
    var(--secondary-color) 25%,
    rgba(216, 223, 229, 0.5) 50%,
    var(--secondary-color) 75%
  );
  background-size: 200% 100%;
  animation: loading 2s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Footer Styles */
footer {
  border-top: 1px solid #e9ecef;
}

footer .nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

footer .nav a:hover {
  color: var(--accent-color);
}

footer .social-links a {
  color: var(--text-dark);
  transition: color 0.3s ease;
}

footer .social-links a:hover {
  color: var(--accent-color);
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
  footer .nav {
    flex-direction: column;
    gap: 1rem !important;
  }

  footer .nav a {
    text-align: center;
  }
}

/* About Page Specific Styles */
.brand-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.brand-logo img {
  max-height: 60px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.contact-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.contact-form .form-control {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(119, 75, 229, 0.15);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.about-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Responsive Images for Mobile */
@media (max-width: 768px) {
  .about-content h1 {
    font-size: 2.5rem;
  }

  .brand-logo img {
    max-height: 50px;
  }

  /* Ensure all images maintain aspect ratio on mobile */
  .img-fluid,
  .card-img-top,
  .carousel-item img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .brand-logo img {
    max-height: 45px;
  }

  .about-content h1 {
    font-size: 2rem;
  }
}
