html {
  font-size: 80%; /* 1rem ≈ 14.4px (instead of zoom:0.9) */
  scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Text:wght@400;600&display=swap');

:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --color-accent: #0071e3;
  --color-bg: #fff;
  --color-bg-light: #fffffc;
  --color-text-primary: #242424;
  --color-text-secondary: #6e6e73;
  --color-border: #d2d2d7;
  --radius-base: 8px;
  --shadow-soft: rgba(0, 0, 0, 0.08);
  --transition-speed: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--color-bg-light);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-content {
  max-width: 1000px; /* Wider desktop content */
  margin: 0 auto;
  padding: 3rem 2rem;
  min-height: calc(100vh - 80px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-content h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.page-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 1.2rem;
  max-width: 700px; /* Slightly wider text lines */
}

.about-image {
  margin-top: 3rem;
  width: 100%;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-base);
  box-shadow: 0 6px 20px var(--shadow-soft);
  transition: transform 0.3s ease;
}


.footer {
  background-color: #242424;
  color: white;
  padding: 2rem;
  border-radius: 2rem 2rem 0 0;
  margin: 6rem auto 0 auto;
  max-width: calc(100% - 3rem);
  box-sizing: border-box;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo img {
  width: 4rem;
  height: auto;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column h4 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-column a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-column a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* Larger image & wider layout for desktop */
@media (min-width: 1024px) {
  .page-content {
    max-width: 1200px; /* More horizontal space */
    padding: 4rem 3rem;
  }
  .page-content p {
    max-width: 800px; /* Wider text area */
  }
  .about-image {
    max-width: 90%; /* Bigger image on desktop */
  }
  .about-image img {
    max-height: 650px; /* Taller image */
    object-fit: cover;
  }
}
