:root {
  --primary: #FF6B6B;
  --accent: #5DC288;
  --text: #333333;
  --bg: #FFF9F5;
  --box: #ffffff;
  --font: 'Inter', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
}

header {
  background: var(--primary);
  color: white;
  padding: 1.5rem 2.9rem;
}

.header-container {
  max-width: 750px;         /* reduced from 1100px */
  margin: 0 auto;
  padding: 0 1rem;          /* add horizontal breathing room */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.header-top {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding-left: 0.5rem;
}

.header-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-left {
  flex: 1;
  min-width: 280px;
}

.header-img {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: -1.5rem;
}


/* Spacing between title, text, and button */
.header-left h1 {
  margin-bottom: 1.0rem;
}

.header-left h2 {
  margin-top: 1.0rem;
  margin-bottom: 0.8rem;
}

.header-left .cta {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}


.cat-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.cat-text {
  flex: 1;
  min-width: 280px;
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.cat-text p {
  line-height: 2.0; /* or try 2 for more space */
}



.cat-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cat-image {
  max-width: 320px;
  width: 100%;
  /* border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}



header h1 {
  margin: 0.5rem 0;
  font-size: 2.5rem;
}

.cta {
  background: var(--accent);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  margin-top: 1rem;
}

.section {
  padding: 2rem 1rem;
  text-align: center;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-box {
  background: var(--box);
  padding: 0.8rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  width: 200px;
}

.feature-box img {
  width: 100px;
  margin-bottom: 0.5rem;
}

.company {
  background: #EAF9EF;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 1rem;
}

footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  padding: 1rem;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* spacing between paw and title */
}

.logo-title h1 {
  margin: 0;
  color: black;
  font-size: 2.5rem;
}

.paw-icon {
  width: 75px;
  height: auto;
}


.top-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  background: white;
  padding: 1rem;
  font-family: var(--font);
  font-weight: 600;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-nav a {
  text-decoration: none;
  color: var(--primary);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.top-nav a:hover {
  color: var(--accent);
}


@media (max-width: 768px) {
  .header-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-img {
    margin-bottom: 0;
    max-width: 200px;
  }
}
