
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  background: #f5f5f7;
}
a { color: inherit; text-decoration: none; }
header, main, footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 1.5rem;
  margin-top: 1rem;
  background: white;
  border-radius: 1.75rem;
  box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}
.hero-text h1 {
  font-size: 2.1rem;
  margin: 0 0 0.75rem;
}
.hero-text p.lead {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: #4b5563;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #ecfdf3;
  color: #166534;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.hero-image {
  border-radius: 1.5rem;
  background: radial-gradient(circle at 0 0, #dbeafe, #f9fafb);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #4b5563;
  padding: 1.5rem;
  text-align: center;
}
.building-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.card {
  background: linear-gradient(180deg, #F4F6F8, #ECEFF2);
  border: 1px solid #E1E5EA;        /* Soft defining line */
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.card h3 {
  margin: 0;
  font-size: 1rem;
}
.card p {
  margin: 0;
  font-size: 0.86rem;
  color: #4b5563;
}
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  font-size: 0.72rem;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 500;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #0f766e;
  background: #0d9488;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}
.btn.secondary {
  background: white;
  color: #0f766e;
}
.section-title {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.2rem;
}
.section-sub {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 0;
}
.building-meta {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.85rem;
  color: #6b7280;
}
@media (max-width: 768px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-banner {
  margin-top: 1rem;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15,23,42,0.18);
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.card-image {
  width: 100%;
  height: 120px;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background: #e5e7eb;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Ensure buttons in building cards align at the bottom */
.card .btn,
.card .btn.secondary {
  margin-top: auto;
}
.rachel-badge {
  margin-top: 1.5rem;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.rachel-badge img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.rachel-badge p {
  font-size: 0.8rem;
  line-height: 1.3;
  margin: 0;
  color: #374151;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
}

.hero-card {
  background: linear-gradient(135deg, #e0f2fe 0%, #eef2ff 100%);
  padding: 28px;
  border-radius: 20px;
  min-height: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-agent {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.hero-agent img {
  width: 130px;
  height: auto;
  border-radius: 12px;
}

/* Footer layout */
footer {
  background: #f9fafb;
  padding: 20px 10px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.site-credit {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #6b7280;
}

.site-credit img {
  height: 28px;
}
/* ========== GALLERY ========== */
/* Gallery section for building pages */
.gallery-section {
  margin-top: 2.5rem;
}

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

.gallery-grid figure {
  background: white;
  padding: 0.75rem;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
}

.gallery-grid figcaption {
  font-size: 0.75rem;
  color: #4b5563;
  margin-top: 0.4rem;
}
/* FULL PAGE HERO - 975 */
.full-width-hero {
  margin-top: 1rem;
  padding: 0;
}

.full-width-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* Text under hero */
.hero-text-only {
  margin-top: 1.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.hero-text-only h1 {
  font-size: 2.2rem;
  margin-top: 0.7rem;
}

.hero-text-only .lead {
  color: #4b5563;
  font-size: 1rem;
  max-width: 640px;
}
/* Tenant Portal document layout */
.docs-section {
  margin-top: 2rem;
}

.doc-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem;
}

.doc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  font-size: 0.85rem;
  color: #111827;
}

.doc-link:hover {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.doc-tag {
  font-size: 0.7rem;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 600;
}

/* Muted "coming soon" pills */
.doc-link--muted {
  opacity: 0.7;
  cursor: default;
}
.gallery-grid a {
  cursor: zoom-in;
}
/* Contact form layout */
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.form-row {
  display: flex;
  gap: 0.75rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-form label {
  font-size: 0.8rem;
  color: #4b5563;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  padding: 0.45rem 0.6rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

/* Stack fields on small screens */
@media (max-width: 640px) {
  .form-row {
    flex-direction: column;
  }
}
/* Small link list inside the building "Forms & Service Providers" card */
.card-links {
  font-size: 0.8rem;
  color: #374151;
  margin: 0;
  padding-left: 1.1rem;
}

.card-links li {
  margin-bottom: 0.25rem;
}

.card-links a {
  color: #111827;
  text-decoration: none;
}

.card-links a:hover {
  text-decoration: underline;
}

/* Floorplans strip under each building gallery */
.floorplans-section {
  margin-top: 2.5rem;
}

.floorplans-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.4rem 0 0.6rem;
  scroll-snap-type: x mandatory;
}

.floorplans-strip::-webkit-scrollbar {
  height: 6px;
}

.floorplans-strip::-webkit-scrollbar-track {
  background: transparent;
}

.floorplans-strip::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}

.floorplans-item {
  flex: 0 0 220px;          /* keeps them in a straight line */
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07);
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #111827;
}

.floorplans-item img {
  width: 100%;
  height: 160px;
  object-fit: contain;      /* so whole plan stays visible */
  border-radius: 0.75rem;
  background: #f3f4f6;
}

.floorplans-item span {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #374151;
}
.floorplans-row {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 10px 0 20px;
  scroll-snap-type: x mandatory;
}

.floorplans-row a {
  scroll-snap-align: center;
}

.floorplans-row img {
  height: 180px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.floorplans-row img:hover {
  transform: scale(1.05);
  cursor: pointer;
}
/* Floor plans horizontal strip */
.floorplans-section {
  margin-top: 2rem;
}

.floorplans-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.75rem 0 0.5rem;
  scroll-behavior: smooth;
}

.floorplans-strip::-webkit-scrollbar {
  height: 6px;
}

.floorplans-strip::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 999px;
}

.floorplans-strip::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 999px;
}

/* Each floor plan card */
.floorplan-item {
  min-width: 190px;
  max-width: 210px;
  background: #ffffff;
  border-radius: 1rem;
  padding: 0.6rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floorplan-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}

.floorplan-item figcaption {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #374151;
  text-align: center;
}
/* ================================
   RESPONSIVE ADJUSTMENTS
   ================================ */

/* Medium screens – tablets & small laptops */
@media (max-width: 900px) {

  /* Main layout width & padding */
  main {
    padding-inline: 1.25rem;
  }

  /* Header: let things wrap instead of squishing */
  header > div {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  header nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  /* Hero section: stack text & image vertically */
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image,
  .hero-banner img {
    justify-self: center;
  }

  .hero-image img,
  .hero-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  /* Cards: give them a bit more breathing room */
  .card {
    padding: 1.25rem;
  }
}

/* Small screens – phones */
@media (max-width: 600px) {

  body {
    font-size: 0.95rem;
  }

  header {
    padding-inline: 1rem;
  }

  header > div {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav {
    width: 100%;
    gap: 0.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  header nav a {
    font-size: 0.85rem;
  }

  /* Hero text spacing */
  .hero {
    margin-top: 0.75rem;
  }

  .hero-text h1 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .lead {
    font-size: 0.98rem;
  }

  /* Gallery grid: 2 per row on phones */
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .gallery-grid figure {
    padding: 0.5rem;
  }

  .gallery-grid figcaption {
    font-size: 0.8rem;
  }

  /* Floor plan strip: slightly smaller thumbs for phones */
  .floorplans-strip {
    gap: 0.75rem;
  }

  .floorplans-strip figure {
    min-width: 180px;
    padding: 0.5rem;
  }

  .floorplans-strip img {
    max-height: 240px;
  }

  /* Tenant docs: make links full-width */
  .doc-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .doc-link {
    justify-content: space-between;
  }
}
.simple-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.simple-table th,
.simple-table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.simple-table th {
  font-weight: 600;
  color: #374151;
  background: #f9fafb;
}
.owner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.owner-card {
  text-align: center;
}

.owner-logo {
  max-width: 160px;
  height: auto;
  margin-bottom: 0.5rem;
}
.dual-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}

.hero-logo {
  text-align: center;
}

.hero-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.ownership {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.4;
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .dual-column {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-logo {
    order: 2;
  }
}
.about-section {
  padding: 3rem 1.5rem;
  background: #f9fafb;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.about-text h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #374151;
}

.about-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.2rem;
}

.about-logos img {
  height: 40px;
  object-fit: contain;
}

/* Partners cards */
.partners-section {
  padding: 2.5rem 1.5rem 3.5rem;
  background: #ffffff;
}

.partners-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.partner-card {
  background: #f9fafb;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}

.partner-card h3 {
  margin-bottom: 0.75rem;
}

/* Mobile */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-logos {
    justify-content: center;
  }

  .about-image img {
    max-width: 180px;
    margin: auto;
  }
}
/* ===== PROMO BANNERS (985 + 37) ===== */

.promo-banner {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.promo-inner {
  background: linear-gradient(90deg, #f97316, #facc15); /* bright orange → yellow */
  background-size: 200% 100%;
  color: #111827;
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  animation: promoSlide 8s linear infinite;
}

.promo-main {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.promo-deadline {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.15rem;
  text-transform: uppercase;
}

/* Small screens: let the pill breathe */
@media (max-width: 640px) {
  .promo-inner {
    border-radius: 16px;
    padding: 0.75rem 1rem;
  }

  .promo-main {
    font-size: 1rem;
  }

  .promo-deadline {
    font-size: 0.8rem;
  }
}

/* Animated gradient */
@keyframes promoSlide {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* ===== RESERVATION DETAILS ===== */

.reservation-details {
  margin-top: 2rem;
}

.reservation-list {
  font-size: 0.92rem;
  color: #374151;
  margin: 0.75rem 0 0.5rem;
  padding-left: 1.2rem;
}

.reservation-list li {
  margin-bottom: 0.4rem;
}

.reservation-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.5rem;
}
/* --- PROMO BAR (under header) --- */
.promo-bar {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f766e, #14b8a6);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35);
  animation: promoPulse 2.4s ease-in-out infinite;
}

.promo-bar strong {
  font-weight: 700;
}

.promo-bar span {
  opacity: 0.95;
}

.promo-bar .promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.9);
  background: #f9fafb;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.promo-bar .promo-cta:hover {
  background: #e0f2fe;
}

/* subtle breathing animation */
@keyframes promoPulse {
  0%   { transform: translateY(0); box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35); }
  50%  { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45); }
  100% { transform: translateY(0); box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35); }
}

@media (max-width: 640px) {
  .promo-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-bar .promo-cta {
    width: 100%;
    justify-content: center;
  }
}

/* --- PROMO BAR (under header) --- */
.promo-bar {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f766e, #14b8a6);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35);
  animation: promoPulse 2.4s ease-in-out infinite;
}

.promo-bar strong {
  font-weight: 700;
}

.promo-bar span {
  opacity: 0.95;
}

.promo-bar .promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.9);
  background: #f9fafb;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.promo-bar .promo-cta:hover {
  background: #e0f2fe;
}

/* subtle breathing animation */
@keyframes promoPulse {
  0%   { transform: translateY(0); box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35); }
  50%  { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45); }
  100% { transform: translateY(0); box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35); }
}

@media (max-width: 640px) {
  .promo-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-bar .promo-cta {
    width: 100%;
    justify-content: center;
  }
}

/* --- PROMO CARD (below hero) --- */
.promo-card-section {
  margin-top: 1.5rem;
}

.promo-card {
  background: #0f172a;
  color: #f9fafb;
  border-radius: 1.75rem;
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.45);
}

.promo-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promo-card .promo-sub {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  opacity: 0.95;
}

.promo-card .promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #fbbf24;
  color: #111827;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.promo-card .promo-btn:hover {
  background: #facc15;
}

.promo-card .promo-small {
  margin: 0.9rem 0 0;
  font-size: 0.78rem;
  opacity: 0.85;
}
.about-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 20px;
}

.about-photo img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.about-text h2 {
  margin-top: 0;
  font-size: 1.6rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-fr {
  margin-top: 1.5rem;
  font-style: italic;
}

.about-logos {
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.about-logos img {
  height: 45px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    margin-bottom: 1rem;
  }

  .about-photo img {
    margin: 0 auto;
  }

  .about-logos {
    justify-content: center;
  }
}
