* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      line-height: 1.6;
      color: #333;
      background: linear-gradient(to bottom, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
      width: 100%;
      overflow-x: hidden;
    }

    /* Modern Header Styles */
    header {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      padding: 0.5rem;
    }

    nav {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 1rem 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-radius: 25px;
      box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
      margin: 0.5rem;
      transition: all 0.3s ease;
    }

    nav h1 {
      background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      text-align: center;
    }

    nav ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      list-style: none;
      gap: 0.5rem;
      width: 100%;
    }

    nav a {
      color: white;
      text-decoration: none;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      transition: all 0.3s ease;
      font-weight: 500;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 0.9rem;
    }

    nav a:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-1px);
    }

    /* Dog Mascot Styles */
    .dog-mascot-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
      padding: 0 1rem;
    }

    .dog-face {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, #8B4513, #D2691E);
      border-radius: 50%;
      position: relative;
      animation: bounce 2s ease-in-out infinite;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-15px) scale(1.05); }
    }

    .dog-ears {
      position: absolute;
      top: -15px;
      width: 100%;
    }

    .ear {
      position: absolute;
      width: 35px;
      height: 50px;
      background: linear-gradient(135deg, #8B4513, #A0522D);
      border-radius: 50%;
    }

    .left-ear {
      left: -8px;
      transform: rotate(-30deg);
    }

    .right-ear {
      right: -8px;
      transform: rotate(30deg);
    }

    .dog-eyes {
      position: absolute;
      top: 25px;
      width: 100%;
      display: flex;
      justify-content: space-around;
    }

    .eye {
      width: 18px;
      height: 18px;
      background: radial-gradient(circle, #000 70%, #444 100%);
      border-radius: 50%;
      position: relative;
      animation: blink 4s infinite;
    }

    .dog-nose {
      position: absolute;
      width: 20px;
      height: 12px;
      background: radial-gradient(circle, #000 70%, #333 100%);
      border-radius: 50%;
      top: 45px;
      left: 50%;
      transform: translateX(-50%);
    }

    .dog-mouth {
      position: absolute;
      width: 50px;
      height: 25px;
      border-bottom: 3px solid #000;
      border-radius: 0 0 50px 50px;
      top: 60px;
      left: 50%;
      transform: translateX(-50%);
    }

    .tongue {
      width: 25px;
      height: 12px;
      background: #ff69b4;
      border-radius: 0 0 25px 25px;
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
    }

    .speech-bubble {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      padding: 0.75rem 1.25rem;
      border-radius: 20px;
      position: relative;
      box-shadow: 0 6px 25px rgba(31, 38, 135, 0.37);
      animation: float 3s ease-in-out infinite;
      border: 1px solid rgba(255, 255, 255, 0.2);
      margin-top: 1rem;
    }

    .speech-bubble p {
      margin: 0;
      font-size: 1rem;
      font-weight: 600;
      color: #2c3e50;
      text-align: center;
    }

    .speech-bubble::after {
      content: '';
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      border: 8px solid transparent;
      border-bottom-color: rgba(255, 255, 255, 0.9);
    }

    /* Main Layout */
    main {
      margin-top: 100px;
      width: 100%;
    }

    .hero {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: calc(100vh - 100px);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
      padding: 2rem 1rem;
      margin: 0;
      width: 100%;
    }

    .hero-content {
      z-index: 1;
      padding: 1rem;
      max-width: 600px;
      width: 100%;
    }

    .hero-content h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      animation: fadeInUp 1s ease;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-content p {
      font-size: 1rem;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .cta-button {
      display: inline-block;
      padding: 0.875rem 2rem;
      background: white;
      color: #667eea;
      text-decoration: none;
      border-radius: 25px;
      transition: all 0.3s;
      font-weight: 600;
      border: 2px solid white;
      box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }

    /* Full width sections */
    section {
      padding: 3rem 1rem;
      margin: 0;
      width: 100%;
    }

    .dogs-section {
      background: rgba(245, 247, 250, 0.9);
      backdrop-filter: blur(10px);
      padding: 3rem 1rem;
      width: 100%;
    }

    .dogs-section h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
      color: #2c3e50;
    }

    .dogs-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      max-width: 400px;
      margin: 0 auto;
      width: 100%;
    }

    .dog-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(31, 38, 135, 0.2);
      transition: all 0.3s;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .dog-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(31, 38, 135, 0.3);
    }

    .dog-image {
      width: 100%;
      height: 150px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      /* Removed wiggle animation */
    }

    .dog-info {
      padding: 1.5rem;
      text-align: center;
    }

    .dog-info h3 {
      margin-bottom: 0.5rem;
      color: #2c3e50;
      font-size: 1.25rem;
    }

    .dog-info p {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
      color: #666;
    }

    /* White Button */
    .adopt-btn,
    .contact-form button {
      width: 100%;
      padding: 0.875rem;
      background: white;
      color: #667eea;
      border: 2px solid white;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    }

    .adopt-btn:hover,
    .contact-form button:hover {
      background: rgba(255, 255, 255, 0.9);
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
    }

    /* About section */
    .about-section {
      background: rgba(102, 126, 234, 0.9);
      backdrop-filter: blur(10px);
      color: white;
      padding: 3rem 1rem;
    }

    .about-section h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
    }

    .about-content {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .about-text {
      text-align: center;
    }

    .about-text p {
      margin-bottom: 1rem;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .about-stats {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .stat {
      text-align: center;
      padding: 1.5rem;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      color: white;
      border-radius: 15px;
      transition: transform 0.3s;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .stat h3 {
      font-size: 1.5rem;
      margin-bottom: 0.25rem;
    }

    .stat p {
      font-size: 0.9rem;
    }

    /* Contact section */
    .contact-section {
      background: rgba(118, 75, 162, 0.9);
      backdrop-filter: blur(10px);
      color: white;
      padding: 3rem 1rem;
    }

    .contact-section h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
    }

    .contact-content {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
    }

    .contact-info h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .contact-info p {
      font-size: 0.9rem;
      line-height: 1.6;
    }

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

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      padding: 0.875rem;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 15px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      color: white;
      font-family: inherit;
      font-size: 0.9rem;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: rgba(255,255,255,0.7);
      font-size: 0.85rem;
    }

    /* Full width footer */
    footer {
      background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
      color: white;
      text-align: center;
      padding: 1.5rem;
      font-size: 0.85rem;
    }

    /* Tablet styles */
    @media (min-width: 768px) {
      header {
        padding: 1rem;
      }

      nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 2rem;
        margin: 1rem auto;
        max-width: 800px;
      }

      nav h1 {
        font-size: 1.6rem;
        margin-bottom: 0;
      }

      nav ul {
        flex-direction: row;
        gap: 1rem;
      }

      nav a {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        white-space: nowrap;
      }

      .dog-mascot-section {
        flex-direction: row;
        gap: 2rem;
      }

      .dog-face {
        width: 110px;
        height: 110px;
      }

      .speech-bubble {
        margin-top: 0;
        order: initial;
      }

      .speech-bubble::after {
        top: 50%;
        left: -8px;
        transform: translateY(-50%);
        border: 8px solid transparent;
        border-right-color: rgba(255, 255, 255, 0.9);
      }

      .hero-content h2 {
        font-size: 2.5rem;
      }

      .hero-content p {
        font-size: 1.1rem;
      }

      .dogs-section h2,
      .about-section h2,
      .contact-section h2 {
        font-size: 2.2rem;
      }

      .dogs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 800px;
        gap: 2rem;
      }

      .about-content,
      .contact-content {
        max-width: 800px;
        gap: 3rem;
      }

      .about-stats {
        flex-direction: row;
        justify-content: space-around;
      }

      .stat {
        flex: 1;
        margin: 0 0.5rem;
      }

      .contact-content {
        flex-direction: row;
        align-items: flex-start;
      }

      .contact-form {
        flex: 1;
      }

      .contact-info {
        flex: 1;
        text-align: left;
      }
    }

    /* Desktop styles */
    @media (min-width: 1024px) {
      nav {
        max-width: 1200px;
        padding: 1rem 3rem;
      }

      nav h1 {
        font-size: 1.8rem;
      }

      .hero-content h2 {
        font-size: 3rem;
      }

      .hero-content p {
        font-size: 1.2rem;
      }

      .dogs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        max-width: 1200px;
      }

      .about-content {
        max-width: 1000px;
        flex-direction: row;
        align-items: flex-start;
      }

      .about-text {
        flex: 2;
        text-align: left;
      }

      .about-stats {
        flex: 1;
        flex-direction: column;
      }

      .contact-content {
        max-width: 1000px;
      }
    }
