/* Base Styles */
:root {
    --rescue-orange: #FF8C42;
    --rescue-blue: #4D7EA8;
    --rescue-teal: #2AA99D;
    --rescue-lightGray: #F5F7FA;
    --rescue-darkGray: #333333;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --rounded-sm: 0.25rem;
    --rounded-md: 0.375rem;
    --rounded-lg: 0.5rem;
    --rounded-xl: 1rem;
    --rounded-full: 9999px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: var(--rescue-darkGray);
    background-color: white;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  ul, ol {
    list-style: none;
  }
  
  /* Utility Classes */
  .text-orange {
    color: var(--rescue-orange);
  }
  
  .text-blue {
    color: var(--rescue-blue);
  }
  
  .text-teal {
    color: var(--rescue-teal);
  }
  
  .text-red {
    color: #e53e3e;
  }
  
  .bg-orange {
    background-color: var(--rescue-orange);
  }
  
  .bg-blue {
    background-color: var(--rescue-blue);
  }
  
  .bg-teal {
    background-color: var(--rescue-teal);
  }
  
  /* Buttons */
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: var(--rounded-full);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
  }
  
  .primary-button {
    background-color: var(--rescue-orange);
    color: white;
  }
  
  .primary-button:hover {
    background-color: #e67e3b;
  }
  
  .secondary-button {
    border: 2px solid var(--rescue-blue);
    color: var(--rescue-blue);
    background-color: transparent;
  }
  
  .secondary-button:hover {
    background-color: var(--rescue-blue);
    color: white;
  }
  
  .outline-orange-button {
    border: 2px solid var(--rescue-orange);
    color: var(--rescue-orange);
    background-color: transparent;
  }
  
  .outline-orange-button:hover {
    background-color: var(--rescue-orange);
    color: white;
  }
  
  .outline-blue-button {
    border: 2px solid var(--rescue-blue);
    color: var(--rescue-blue);
    background-color: transparent;
  }
  
  .outline-blue-button:hover {
    background-color: var(--rescue-blue);
    color: white;
  }
  
  .outline-teal-button {
    border: 2px solid var(--rescue-teal);
    color: var(--rescue-teal);
    background-color: transparent;
  }
  
  .outline-teal-button:hover {
    background-color: var(--rescue-teal);
    color: white;
  }
  
  /* Header and Navigation */
  .sticky-header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: var(--shadow-sm);
    z-index: 50;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo-icon {
    font-size: 1.75rem;
    color: var(--rescue-orange);
  }
  
  .site-name {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: -0.025em;
  }
  
  .desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .desktop-nav {
      display: flex;
    }
    
    .mobile-menu-button {
      display: none;
    }
  }
  
  .nav-link {
    color: var(--rescue-darkGray);
    font-weight: 500;
    transition: var(--transition);
  }
  
  .nav-link:hover {
    color: var(--rescue-orange);
  }
  
  .nav-link.active {
    color: var(--rescue-orange);
  }
  
  .mobile-menu-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--rescue-darkGray);
  }
  
  .mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem;
    background-color: white;
    box-shadow: var(--shadow-md);
  }
  
  .mobile-nav.active {
    display: flex;
  }
  
  .mobile-nav .nav-link {
    padding: 0.5rem 1rem;
  }
  
  .mobile-nav .mobile-button {
    margin-top: 0.5rem;
    width: 100%;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, rgba(255, 140, 66, 0.1), white);
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .hero-content {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    
    .hero-section {
      padding: 6rem 0;
    }
  }
  
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  @media (min-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 3rem;
    }
  }
  
  .hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .hero-buttons {
      flex-direction: row;
    }
  }
  
  .hero-image-container {
    position: relative;
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  }
  
  .hero-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: white;
    font-weight: 500;
  }
  
  /* Featured Pets Section */
  .featured-pets-section {
    padding: 4rem 0;
    background-color: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 768px) {
    .section-title {
      font-size: 2.25rem;
    }
  }
  
  .section-description {
    color: #4b5563;
    max-width: 36rem;
    margin: 0 auto;
  }
  
  .pet-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  @media (min-width: 640px) {
    .pet-card-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .pet-card-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .pet-card {
    border: 1px solid #e5e7eb;
    border-radius: var(--rounded-xl);
    overflow: hidden;
    background-color: white;
    transition: var(--transition);
  }
  
  .pet-card:hover {
    box-shadow: var(--shadow-lg);
  }
  
  .pet-image-container {
    position: relative;
    height: 14rem;
    overflow: hidden;
  }
  
  .pet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .pet-card:hover .pet-image {
    transform: scale(1.05);
  }
  
  .pet-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.75rem;
    color: white;
  }
  
  .dog-badge {
    background-color: var(--rescue-orange);
  }
  
  .cat-badge {
    background-color: var(--rescue-blue);
  }
  
  .favorite-button {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .favorite-button:hover {
    background-color: rgba(255, 140, 66, 0.8);
    color: white;
  }
  
  .pet-details {
    padding: 1.25rem;
  }
  
  .pet-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .pet-info {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  .pet-description {
    color: #4b5563;
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .section-footer {
    text-align: center;
    margin-top: 2.5rem;
  }
  
  .view-all-link {
    display: inline-flex;
    align-items: center;
    color: var(--rescue-blue);
    font-weight: 500;
    transition: var(--transition);
  }
  
  .view-all-link:hover {
    color: var(--rescue-orange);
  }
  
  .view-all-link i {
    margin-left: 0.25rem;
  }
  
  /* Mission Section */
  .mission-section {
    padding: 4rem 0;
    background-color: var(--rescue-lightGray);
  }
  
  .mission-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  @media (min-width: 768px) {
    .mission-content {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  }
  
  .mission-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
  }
  
  .mission-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .mission-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
  }
  
  .mission-image-container {
    position: relative;
  }
  
  .mission-image {
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
  
  .mission-stats {
    position: absolute;
    right: -1.5rem;
    bottom: -1.5rem;
    background-color: white;
    border-radius: var(--rounded-lg);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
  }
  
  @media (max-width: 767px) {
    .mission-stats {
      display: none;
    }
  }
  
  .stats-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rescue-orange);
  }
  
  .stats-label {
    color: #6b7280;
  }
  
  /* Help Section */
  .help-section {
    padding: 4rem 0;
    background-color: white;
  }
  
  .help-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  @media (min-width: 640px) {
    .help-options-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .help-options-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .help-option {
    border-radius: var(--rounded-xl);
    padding: 1.5rem;
    text-align: center;
  }
  
  .adopt-option {
    background-color: rgba(255, 140, 66, 0.1);
  }
  
  .foster-option {
    background-color: rgba(77, 126, 168, 0.1);
  }
  
  .volunteer-option {
    background-color: rgba(42, 169, 157, 0.1);
  }
  
  .donate-option {
    background-color: rgba(255, 140, 66, 0.1);
  }
  
  .supplies-option {
    background-color: rgba(77, 126, 168, 0.1);
  }
  
  .spread-word-option {
    background-color: rgba(42, 169, 157, 0.1);
  }
  
  .help-icon-container {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  
  .orange-icon {
    background-color: rgba(255, 140, 66, 0.1);
  }
  
  .orange-icon i {
    color: var(--rescue-orange);
    font-size: 1.75rem;
  }
  
  .blue-icon {
    background-color: rgba(77, 126, 168, 0.1);
  }
  
  .blue-icon i {
    color: var(--rescue-blue);
    font-size: 1.75rem;
  }
  
  .teal-icon {
    background-color: rgba(42, 169, 157, 0.1);
  }
  
  .teal-icon i {
    color: var(--rescue-teal);
    font-size: 1.75rem;
  }
  
  .help-option-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .help-option-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
  }
  
  .social-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .social-button {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .facebook {
    color: #4267B2;
    background-color: rgba(66, 103, 178, 0.1);
  }
  
  .facebook:hover {
    background-color: #4267B2;
    color: white;
  }
  
  .instagram {
    color: #C13584;
    background-color: rgba(193, 53, 132, 0.1);
  }
  
  .instagram:hover {
    background-color: #C13584;
    color: white;
  }
  
  .twitter {
    color: #1DA1F2;
    background-color: rgba(29, 161, 242, 0.1);
  }
  
  .twitter:hover {
    background-color: #1DA1F2;
    color: white;
  }
  
  /* Footer */
  .footer {
    background-color: rgba(77, 126, 168, 0.1);
    padding: 3rem 0 2rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .footer-text {
    color: #4b5563;
    margin: 1rem 0;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(77, 126, 168, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rescue-blue);
    transition: var(--transition);
  }
  
  .social-link:hover {
    background-color: var(--rescue-blue);
    color: white;
  }
  
  .footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links a {
    color: #4b5563;
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    color: var(--rescue-orange);
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
  }
  
  .contact-item i {
    margin-top: 0.25rem;
  }
  
  .contact-item a {
    color: #4b5563;
    transition: var(--transition);
  }
  
  .contact-item a:hover {
    color: var(--rescue-orange);
  }
  
  .copyright {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  @media (min-width: 768px) {
    .copyright {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .copyright p {
    color: #6b7280;
    font-size: 0.875rem;
  }
  
  .made-with-love {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
  }
  
  /* Additional Pages Styling */
  
  /* Page Hero Sections */
  .page-hero {
    padding: 3rem 0;
    text-align: center;
  }
  
  .blue-bg {
    background-color: rgba(77, 126, 168, 0.1);
  }
  
  .orange-bg {
    background-color: rgba(255, 140, 66, 0.1);
  }
  
  .page-hero-content {
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .page-hero-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .page-hero-content p {
    font-size: 1.125rem;
    color: #4b5563;
  }
  
  /* Content Sections */
  .content-section {
    padding: 4rem 0;
  }
  
  .gray-bg {
    background-color: var(--rescue-lightGray);
  }
  
  .section-subtitle {
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
  }
  
  .two-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  @media (min-width: 768px) {
    .two-column-grid {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  }
  
  .content-column h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .content-text {
    color: #4b5563;
    margin-bottom: 1.5rem;
  }
  
  .image-column {
    position: relative;
  }
  
  .content-image {
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
  }
  
  .image-with-icon {
    position: relative;
  }
  
  .floating-icon {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    background-color: white;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
  }
  
  .floating-icon i {
    font-size: 2rem;
  }
  
  /* Values Cards */
  .values-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  @media (min-width: 640px) {
    .values-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .values-cards {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .value-card {
    background-color: white;
    border-radius: var(--rounded-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
  }
  
  .value-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
  }
  
  .value-icon-container {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  
  .orange-light-bg {
    background-color: rgba(255, 140, 66, 0.1);
  }
  
  .blue-light-bg {
    background-color: rgba(77, 126, 168, 0.1);
  }
  
  .teal-light-bg {
    background-color: rgba(42, 169, 157, 0.1);
  }
  
  .value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .value-description {
    color: #6b7280;
    font-size: 0.875rem;
  }
  
  /* Team Cards */
  .team-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  @media (min-width: 640px) {
    .team-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .team-cards {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .team-card {
    background-color: white;
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
  }
  
  .team-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-lg);
  }
  
  .team-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
  }
  
  .team-info {
    padding: 1.5rem;
  }
  
  .team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .team-role {
    color: var(--rescue-orange);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .team-bio {
    color: #6b7280;
    font-size: 0.875rem;
  }
  
  .team-note {
    text-align: center;
    margin-top: 2.5rem;
    font-style: italic;
    color: #6b7280;
  }
  
  /* Process Steps */
  .process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  @media (min-width: 640px) {
    .process-steps {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .process-steps {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .process-step {
    background-color: white;
    border-radius: var(--rounded-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
  }
  
  .step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--rescue-orange);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  
  .step-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(77, 126, 168, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  
  .step-icon i {
    color: var(--rescue-blue);
    font-size: 1.75rem;
  }
  
  .step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .step-description {
    color: #6b7280;
    font-size: 0.875rem;
  }
  
  .adoption-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  @media (min-width: 640px) {
    .adoption-cta {
      flex-direction: row;
      justify-content: center;
    }
  }
  
  .outline-button {
    border: 2px solid var(--rescue-blue);
    color: var(--rescue-blue);
    background-color: transparent;
  }
  
  .outline-button:hover {
    background-color: var(--rescue-blue);
    color: white;
  }
  
  /* Filter Controls */
  .filter-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  
  .filter-button {
    background-color: transparent;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--rounded-md);
    transition: var(--transition);
  }
  
  .filter-button:hover {
    background-color: var(--rescue-lightGray);
  }
  
  .filter-button.active {
    background-color: var(--rescue-blue);
    color: white;
  }
  
  /* Pets Grid */
  .pets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  @media (min-width: 640px) {
    .pets-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .pets-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .pet-button {
    width: 100%;
    margin-top: 1rem;
  }
  
  /* FAQ List */
  .faq-list, .faq-container {
    display: grid;
    gap: 1.5rem;
  }
  
  .faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1.5rem;
  }
  
  .faq-question {
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .faq-answer {
    color: #6b7280;
  }
  
  .center {
    text-align: center;
  }
  
  /* Adoption Image */
  .adoption-image-container {
    position: relative;
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .adoption-image {
    width: 100%;
    height: auto;
  }
  
  .adoption-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
  }
  
  .caption-credit {
    display: block;
    margin-top: 0.5rem;
    font-style: italic;
    opacity: 0.8;
  }
  
  /* CTA Section */
  .cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1537151608828-ea2b11777ee8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1394&q=80') center/cover;
    padding: 6rem 0;
    color: white;
    text-align: center;
  }
  
  .cta-content {
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  
  @media (min-width: 640px) {
    .cta-buttons {
      flex-direction: row;
    }
  }
  
  .light-outline {
    border-color: white;
    color: white;
  }
  
  .light-outline:hover {
    background-color: white;
    color: var(--rescue-darkGray);
  }
  
  /* Contact Blocks */
  .contact-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  @media (min-width: 640px) {
    .contact-blocks {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .contact-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .contact-icon i {
    font-size: 1.25rem;
  }
  
  .contact-block-content h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .contact-block-content p {
    color: #6b7280;
  }
  
  .email-link {
    color: var(--rescue-blue);
    transition: var(--transition);
  }
  
  .email-link:hover {
    color: var(--rescue-orange);
  }
  
  /* Map Placeholder */
  .map-placeholder {
    background-color: var(--rescue-lightGray);
    border-radius: var(--rounded-lg);
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
  }
  
  .map-text {
    color: #6b7280;
    font-style: italic;
  }
  
  /* Contact Form */
  .contact-form-container {
    background-color: white;
    border-radius: var(--rounded-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
  }
  
  @media (min-width: 768px) {
    .form-column {
      align-self: stretch;
    }
    
    .contact-form-container {
      height: 100%;
    }
  }
  
  .form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  @media (min-width: 640px) {
    .form-row {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-group label {
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: var(--rounded-md);
    font-family: inherit;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--rescue-blue);
    box-shadow: 0 0 0 2px rgba(77, 126, 168, 0.2);
  }
  
  .form-group .error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 2px rgba(229, 62, 62, 0.2);
  }
  
  .submit-button {
    margin-top: 0.5rem;
  }
  
  .submit-button i {
    margin-right: 0.5rem;
  }
  
  /* Not Found (404) Page */
  .not-found-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
  }
  
  .not-found-content {
    max-width: 32rem;
  }
  
  .not-found-icon {
    position: relative;
    font-size: 6rem;
    color: var(--rescue-orange);
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  
  .not-found-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }
  
  .not-found-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .not-found-text {
    color: #6b7280;
    margin-bottom: 0.5rem;
  }
  
  .not-found-button {
    margin-top: 1.5rem;
  }
  
  /* Active Nav Link */
  .nav-link.active {
    color: var(--rescue-orange);
  }
  