body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      background-color: #f9f9f9;
      color: #333;
    }
    header {
      background: linear-gradient(120deg, rgba(34,34,34,0.7) 0%, rgba(255,126,95,0.5) 100%), url("images/a45.png") no-repeat center center;
      background-size: cover;
      min-height: 60vh;
      position: relative;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(0,0,0,0.12);
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
      overflow: visible;
    }

    .header-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(0,0,0,0.45) 60%, rgba(255,126,95,0.25) 100%);
      z-index: 1;
    }

    .header-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
      padding: 60px 30px 80px 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      backdrop-filter: blur(1.5px);
      border-radius: 18px;
      background: rgba(0,0,0,0.18);
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .header-content h1 {
      font-size: 2.8em;
      font-weight: 800;
      letter-spacing: 1px;
      margin: 0 0 18px 0;
      line-height: 1.1;
      color: #fff;
      text-shadow: 0 4px 16px rgba(34,34,34,0.18);
    }

    .header-content p {
      font-size: 1.35em;
      font-weight: 400;
      margin: 0 0 28px 0;
      color: #f3f3f3;
      text-shadow: 0 2px 8px rgba(34,34,34,0.12);
      line-height: 1.5;
    }

    @media (max-width: 900px) {
      header {
      min-height: 260px;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      padding-top: 10px;
      padding-bottom: 10px;
      }
      .header-content {
      padding: 32px 8vw 36px 8vw;
      max-width: 98vw;
      }
      .header-content h1 {
      font-size: 1.45em;
      margin-bottom: 8px;
      }
      .header-content p {
      font-size: 0.98em;
      margin-bottom: 14px;
      }
    }

    @media (max-width: 600px) {
      header {
      min-height: 180px;
      border-bottom-left-radius: 14px;
      border-bottom-right-radius: 14px;
      padding-top: 4px;
      padding-bottom: 4px;
      }
      .header-content {
      padding: 18px 4vw 22px 4vw;
      max-width: 99vw;
      }
      .header-content h1 {
      font-size: 2.08em;
      margin-bottom: 6px;
      }
      .header-content p {
      font-size: 0.85em;
      margin-bottom: 10px;
      }
    }
    nav {
      background: linear-gradient(90deg, #fffbe7 0%, #ffe2d3 100%);
      box-shadow: 0 2px 8px rgba(255,126,95,0.08);
      padding: 10px 32px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      border-radius: 0 0 14px 14px;
      position: relative;
      min-height: 56px;
      z-index: 1; /* Lower than search bar and suggestions */
      gap: 0;
      width: 100%;
      overflow: visible;
    }

    .nav-links {
      display: flex;
      gap: 6px;
      flex: 1 1 auto;
      align-items: center;
    }

    nav a {
      text-decoration: none;
      color: #333;
      margin: 0 4px;
      font-weight: 600;
      font-size: 1.08em;
      letter-spacing: 0.5px;
      padding: 7px 14px;
      border-radius: 7px;
      background: transparent;
      transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
      position: relative;
      z-index: 1;
      box-shadow: none;
      display: inline-block;
    }

   

    
    @media (max-width: 900px) {
      nav {
        padding: 8px 2vw;
        border-radius: 0 0 10px 10px;
        min-height: 48px;
      }
      .nav-links {
        gap: 2px;
      }
      nav a {
        font-size: 1em;
        padding: 8px 8px;
        border-radius: 8px;
        margin: 0 1px;
      }
    }

    @media (max-width: 700px) {
      nav {
        flex-direction: column;
        align-items: stretch;
        padding: 6px 1vw;
        min-height: 0;
        border-radius: 0 0 8px 8px;
      }
      .nav-links {
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
        gap: 0;
      }
      nav a {
        width: auto;
        min-width: 0;
        font-size: 0.98em;
        padding: 8px 4px;
        border-radius: 8px;
        margin: 0 1px;
      }
    }
    .main {
      padding: 48px 6vw;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
      background: linear-gradient(120deg, #fff 70%, #ffe2d3 100%);
      min-height: 60vh;
    }
    .card {
      background: linear-gradient(120deg, #fff 80%, #ffe2d3 100%);
      border-radius: 16px;
      box-shadow: 0 6px 24px rgba(255,126,95,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      border: 1.5px solid #ffecd2;
      position: relative;
    }
    .card:hover {
      transform: translateY(-8px) scale(1.025);
      box-shadow: 0 12px 32px rgba(255,126,95,0.18), 0 2px 8px rgba(0,0,0,0.08);
      border-color: #ffb199;
    }
    .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-top-left-radius: 16px;
      border-top-right-radius: 16px;
      box-shadow: 0 2px 12px rgba(255,126,95,0.08);
      transition: filter 0.3s;
    }
    .card:hover img {
      filter: brightness(0.96) saturate(1.08);
    }
    .card-body {
      padding: 28px 20px 24px 20px;
      text-align: center;
      background: rgba(255,255,255,0.92);
      border-bottom-left-radius: 16px;
      border-bottom-right-radius: 16px;
      box-shadow: 0 1px 4px rgba(255,126,95,0.04);
    }
    .card-body h3 {
      margin: 0 0 12px;
      font-size: 1.28em;
      color: #ff7e5f;
      font-weight: 800;
      letter-spacing: 0.7px;
      text-shadow: 0 2px 8px rgba(255,126,95,0.10);
    }
    .card-body p {
      margin: 0;
      color: #6d4c41;
      font-size: 1.05em;
      line-height: 1.6;
      letter-spacing: 0.1px;
      opacity: 0.92;
    }

    @media (max-width: 900px) {
      nav {
      padding: 10px 12px;
      border-radius: 0 0 12px 12px;
      }
      .main {
      padding: 24px 2vw;
      gap: 18px;
      }
      .card img {
      height: 160px;
      }
      .card-body {
      padding: 18px 10px 16px 10px;
      }
    }
    @media (max-width: 600px) {
      nav {
      padding: 8px 2vw;
      border-radius: 0 0 8px 8px;
      }
      .main {
      padding: 12px 1vw;
      gap: 10px;
      }
      .card {
      border-radius: 10px;
      }
      .card img {
      height: 260px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      }
      .card-body {
      padding: 10px 4px 10px 4px;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      }
      .card-body h3 {
      font-size: 1.05em;
      margin-bottom: 6px;
      }
      .card-body p {
      font-size: 0.95em;
      }
    }
    footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 20px 0;
      margin-top: 50px;
    }
    footer a {
      color: #ff7e5f;
      text-decoration: none;
      font-weight: 500;
    }
    footer a:hover {
      text-decoration: underline;
    }
    .search-bar {
      display: flex;
      gap: 10px;
      margin-top: 20px;
      position: relative;
      z-index: 10010; /* Ensure search bar and suggestions are above all content */
    }
    .search-bar input,
    .search-bar select,
    .search-bar button {
      padding: 10px;
      font-size: 1em;
      border: none;
      border-radius: 5px;
    }
    .search-bar input,
    .search-bar select {
      flex: 1;
      color: #222;
      background: #fff;
      position: relative;
      z-index: 10011;
    }
    .search-bar input::placeholder {
      color: #888;
      opacity: 1;
    }
    .search-bar select {
      color: #222;
      background: #fff;
    }
    .search-bar button {
      background: #ff7e5f;
      color: white;
      cursor: pointer;
      z-index: 10011;
    }
    .search-bar button:hover {
      background: #feb47b;
    }

    /* Style datalist dropdown suggestions */
    input[type="search"]::-webkit-input-placeholder { color: #888; }
    input[type="search"]::-webkit-input-suggestion { color: #222; background: #f5f5f5; }
    input[type="search"]::-moz-placeholder { color: #888; }
    input[type="search"]:-ms-input-placeholder { color: #888; }

    /* Custom datalist dropdown for Chrome/Edge/Safari */
    input[list]::-webkit-calendar-picker-indicator {
      display: none !important;
    }
    datalist {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      max-height: 220px;
      overflow-y: auto;
      background: #fff;
      border: 1px solid #ff7e5f;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 4px 16px rgba(34,34,34,0.12);
      z-index: 10020; /* Highest z-index for suggestions */
      font-size: 1em;
      color: #222;
      margin-top: 2px;
      display: block;
    }
    datalist option {
      padding: 10px 16px;
      cursor: pointer;
      color: #222;
      background: #fff;
      border: none;
      transition: background 0.2s;
    }
    datalist option:hover,
    datalist option:focus {
      background: #ffe2d3;
      color: #ff7e5f;
    }

    /* For Firefox, which doesn't support styling datalist, fallback to default */
    @-moz-document url-prefix() {
      datalist {
      position: static !important;
      border: none !important;
      box-shadow: none !important;
      background: none !important;
      }
    }
    .landscape-card {
      margin: 200px 40px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .landscape-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    .video-thumbnail {
      position: relative;
      width: 100%;
      height: 250px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
      background: #000;
      display: flex;
      align-items: flex-end;
      margin-bottom: 20px;
    }
    @media (max-width: 600px) {
      .video-thumbnail {
        height: 200px;
        border-radius: 8px;
      }
      .video-thumbnail .overlay h2 {
        font-size: 1.2em;
      }
      .video-thumbnail .overlay p {
        font-size: 0.9em;
        margin-bottom: 10px;
      }
     
    }
    .video-thumbnail video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
    }
    .overlay h2 {
      margin: 0;
      font-size: 2em;
      font-weight: 700;
    }
    .overlay p {
      margin: 0;
      font-size: 1.2em;
      font-weight: 400;
    }
    .overlay button {
      margin-top: 10px;
      padding: 10px 20px;
      background: #ff7e5f;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .overlay button:hover {
      background: #feb47b;
    }
    .nav-toggle-label {
      display: none;
      flex-direction: column;
      cursor: pointer;
      width: 30px;
      height: 30px;
      justify-content: center;
    }
    .nav-toggle-label span {
      display: block;
      height: 4px;
      width: 100%;
      background: #333;
      margin: 4px 0;
      border-radius: 2px;
      transition: 0.3s;
    }
    @media (max-width: 800px), (max-aspect-ratio: 4/5) {
      nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 10px;
        position: relative;
      }
      .nav-toggle-label {
        display: flex !important;
        margin-bottom: 5px;
      }
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        position: absolute;
        top: 40px;
        left: 0;
        z-index: 10;
      }
      #nav-toggle:checked ~ .nav-links {
        display: flex;
      }
      .nav-links a {
        margin: 10px 0;
        padding: 10px 0;
        width: 100%;
      }
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 28px;
      margin-bottom: 22px;
      animation: fadeInLinks 1s;
    }
    @keyframes fadeInLinks {
      from { opacity: 0; transform: translateY(20px);}
      to { opacity: 1; transform: translateY(0);}
    }
    .footer-links a {
      color: #ff7e5f;
      text-decoration: none;
      font-weight: 700;
      letter-spacing: 0.5px;
      font-size: 1.08em;
      padding: 7px 18px;
      border-radius: 7px;
      background: linear-gradient(90deg, #fff 60%, #ffe2d3 100%);
      box-shadow: 0 1.5px 6px rgba(255,126,95,0.08);
      transition: color 0.3s, background 0.3s, transform 0.2s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      min-width: 0;
      text-align: center;
      z-index: 1;
    }
    .footer-links a::after {
      content: '';
      position: absolute;
      left: 0; top: 0; width: 0; height: 100%;
      background: linear-gradient(90deg, #ff7e5f 60%, #feb47b 100%);
      z-index: 0;
      transition: width 0.3s;
      opacity: 0.18;
    }
    .footer-links a:hover {
      color: #fff;
      background: linear-gradient(90deg, #ff7e5f 60%, #feb47b 100%);
      box-shadow: 0 4px 16px rgba(255,126,95,0.18);
      transform: translateY(-2px) scale(1.05);
    }
    .footer-links a:hover::after {
      width: 100%;
      opacity: 0.35;
    }
    .newsletter {
      text-align: center;
      margin-bottom: 22px;
      animation: fadeInNewsletter 1.2s;
      width: 100%;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
    }
    @keyframes fadeInNewsletter {
      from { opacity: 0; transform: translateY(30px);}
      to { opacity: 1; transform: translateY(0);}
    }
    .newsletter form {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      align-items: center;
    }
    .newsletter input[type="email"] {
      padding: 12px;
      font-size: 1em;
      border: 2px solid #ff7e5f;
      border-radius: 7px;
      width: 220px;
      background: linear-gradient(90deg, #fff 80%, #ffe2d3 100%);
      color: #222;
      transition: border 0.3s, box-shadow 0.3s;
      box-shadow: 0 1.5px 6px rgba(255,126,95,0.06);
    }
    .newsletter input[type="email"]:focus {
      border-color: #feb47b;
      outline: none;
      box-shadow: 0 4px 16px rgba(255,126,95,0.18);
    }
    .newsletter button {
      padding: 12px 24px;
      font-size: 1em;
      background: linear-gradient(90deg, #ff7e5f 60%, #feb47b 100%);
      color: #fff;
      border: none;
      border-radius: 7px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 1.5px 6px rgba(255,126,95,0.13);
      transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
      position: relative;
      overflow: hidden;
    }
    .newsletter button::after {
      content: '';
      position: absolute;
      left: 50%; top: 50%;
      width: 0; height: 0;
      background: rgba(255,255,255,0.25);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.4s, height 0.4s;
      z-index: 0;
    }
    .newsletter button:active::after {
      width: 180%;
      height: 180%;
    }
    .newsletter button:hover {
      background: linear-gradient(90deg, #feb47b 60%, #ff7e5f 100%);
      box-shadow: 0 6px 20px rgba(255,126,95,0.22);
      transform: translateY(-2px) scale(1.04);
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 18px;
      animation: fadeInIcons 1.4s;
    }
    @keyframes fadeInIcons {
      from { opacity: 0; transform: scale(0.8);}
      to { opacity: 1; transform: scale(1);}
    }
    .social-icons a {
      color: #fff;
      font-size: 1.6em;
      background: linear-gradient(120deg, #ff7e5f 60%, #feb47b 100%);
      border-radius: 50%;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 1.5px 6px rgba(255,126,95,0.13);
      transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
      position: relative;
      overflow: hidden;
    }
    .social-icons a::before {
      content: '';
      position: absolute;
      left: 50%; top: 50%;
      width: 0; height: 0;
      background: rgba(255,255,255,0.18);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.4s, height 0.4s;
      z-index: 0;
    }
    .social-icons a:active::before {
      width: 180%;
      height: 180%;
    }
    .social-icons a:hover {
      background: #fff;
      color: #ff7e5f;
      box-shadow: 0 6px 20px rgba(255,126,95,0.22);
      transform: scale(1.13) rotate(-6deg);
    }

    /* Enhanced mobile view for elegance, readability, and reachability */
    @media (max-width: 600px) {
      .footer-links {
        gap: 8px;
        font-size: 1.05em;
        margin-bottom: 18px;
        flex-wrap: wrap;
        width: 100vw;
        overflow-x: auto;
        padding: 0 3vw;
        justify-content: center;
        align-items: center;
      }
      .footer-links a {
        flex: 1 1 120px;
        min-width: 120px;
        font-size: 1.05em;
        padding: 12px 0;
        white-space: nowrap;
        text-align: center;
        margin: 0 2px;
        border-radius: 12px;
        background: linear-gradient(90deg, #fff 80%, #ffe2d3 100%);
        box-shadow: 0 2px 8px rgba(255,126,95,0.10);
        letter-spacing: 0.7px;
        font-weight: 700;
      }
      .newsletter {
        margin-bottom: 18px;
        max-width: 98vw;
        padding: 0 3vw;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      .newsletter form {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .newsletter input[type="email"] {
        width: 100%;
        max-width: 100vw;
        margin-bottom: 0;
        padding: 14px 12px;
        font-size: 1.08em;
        border-radius: 12px;
        border-width: 2px;
        background: linear-gradient(90deg, #fff 90%, #ffe2d3 100%);
      }
      .newsletter button {
        width: 100%;
        margin-top: 0;
        padding: 14px 0;
        font-size: 1.08em;
        border-radius: 12px;
        font-weight: 700;
        letter-spacing: 0.7px;
      }
      .social-icons {
        gap: 12px;
        margin-bottom: 16px;
        justify-content: center;
        align-items: center;
      }
      .social-icons a {
        width: 44px;
        height: 44px;
        font-size: 1.4em;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(255,126,95,0.13);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      footer {
        padding: 18px 0 10vw 0;
        font-size: 1.08em;
        text-align: center;
      }
    }
     #blog-list {
        display: flex;
        flex-direction: row;
        gap: 32px;
        justify-content: space-between;
        align-items: stretch;
        min-height: 260px;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
      }
      .blog-card {
        flex: 1 1 0;
        max-width: 300px;
        min-width: 220px;
        min-height: 260px;
        max-height: 340px;
        box-sizing: border-box;
        transition: box-shadow 0.2s, transform 0.15s;
        cursor: pointer;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(120deg, #fff7f0 0%, #f9f9ff 60%, #ffecd2 100%);
        border-radius: 14px;
        box-shadow: 0 2px 8px #2563eb11;
        padding: 0 0 18px 0;
        margin: 0;
      }
      .blog-card:hover {
        box-shadow: 0 8px 24px #2563eb22;
        transform: translateY(-4px) scale(1.03);
        background: linear-gradient(120deg, #f9f9ff 0%, #ffe0c3 100%);
      }
      .blog-card .blog-img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        border-radius: 14px 14px 0 0;
        margin-bottom: 12px;
        box-shadow: 0 2px 8px #2563eb08;
        background: #e0e7ef;
        transition: filter 0.2s;
        display: block;
      }
      .blog-card:hover .blog-img {
        filter: brightness(0.96) saturate(1.08);
      }
      .blog-card .blog-title {
        font-size: 1.08em;
        font-weight: 700;
        color: #222;
        margin: 0 12px 0 12px;
        text-decoration: none;
        display: block;
        transition: color 0.2s;
        text-align: center;
        line-height: 1.3;
        padding: 8px 0 0 0;
        min-height: 48px;
      }
      .blog-card:hover .blog-title {
        color: #2563eb;
        text-decoration: underline;
      }
      @media (max-width: 900px) {
        #blog-list {
          gap: 16px;
          max-width: 98vw;
        }
        .blog-card {
          max-width: 32vw;
          min-width: 140px;
          min-height: 180px;
          max-height: 260px;
          padding: 0 0 12px 0;
        }
        .blog-card .blog-img {
          height: 110px;
        }
      }
      @media (max-width: 700px) {
        #blog-list {
          flex-direction: column;
          gap: 14px;
          align-items: center;
          min-height: unset;
        }
        .blog-card {
          max-width: 98vw;
          min-width: 0;
          min-height: 140px;
          max-height: 260px;
          padding: 0 0 10px 0;
        }
        .blog-card .blog-img {
          height: 110px;
        }
        .blog-card .blog-title {
          font-size: 0.98em;
          min-height: 36px;
        }
      }
       #news-list::-webkit-scrollbar { display: none; }
      #news-list-container { scrollbar-width: none; }
      @media (max-width: 700px) {
        #news-updates {
          padding: 8px 2vw !important;
          border-radius: 6px !important;
          margin-bottom: 10px !important;
        }
        #news-list {
          gap: 10px !important;
        }
        #news-list li {
          min-width: 78vw !important;
          max-width: 90vw !important;
          font-size: 0.97em !important;
          padding: 8px 10px !important;
        }
        #news-swipe-msg {
          display: block !important;
        }
      }
      /* News Popup Styles */
      #news-popup-modal {
        display: none;
        position: fixed;
        z-index: 10001;
        left: 0; top: 0; width: 100vw; height: 100vh;
        background: rgba(0,0,0,0.45);
        align-items: center;
        justify-content: center;
      }
      #news-popup-content {
        background: #fffbe7;
        border-radius: 14px;
        max-width: 420px;
        width: 92vw;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
        padding: 28px 22px 22px 22px;
        position: relative;
        animation: newsPopIn 0.18s cubic-bezier(.4,1.4,.6,1) 1;
      }
      @keyframes newsPopIn {
        0% { transform: scale(0.92); opacity: 0; }
        100% { transform: scale(1); opacity: 1; }
      }
      #news-popup-content h3 {
        margin: 0 0 12px 0;
        color: #ff7e5f;
        font-size: 1.25em;
        font-weight: 700;
        text-align: center;
      }
      #news-popup-content p {
        color: #333;
        font-size: 1.05em;
        margin-bottom: 0;
        text-align: center;
      }
      #news-popup-close {
        position: absolute;
        top: 10px; right: 16px;
        background: none;
        border: none;
        font-size: 1.7em;
        color: #ff7e5f;
        cursor: pointer;
        font-weight: 700;
        line-height: 1;
      }
      /* General mobile improvements */
body {
  font-size: 1em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Header: full width, better padding */
@media (max-width: 600px) {
  header {
    min-height: 160px;
    padding: 0 0 8px 0;
    border-radius: 0 0 14px 14px;
    background-position: center top;
  }
  .header-content {
    padding: 16px 4vw 18px 4vw;
    max-width: 100vw;
    border-radius: 12px;
    font-size: 1em;
  }
  .header-content h1 {
    font-size: 2.4em; /* Increased font size */
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .header-content p {
    font-size: 1em;
    margin-bottom: 10px;
  }
}



/* Cards: full width, better spacing */
@media (max-width: 600px) {
  .main {
    grid-template-columns: 1fr;
    padding: 10px 2vw;
    gap: 12px;
    min-width: 0;
  }
  .card {
    border-radius: 10px;
    min-width: 0;
    width: 100%;
    margin: 0 auto;
  }
  .card img {
    height: 260px;
    border-radius: 10px 10px 0 0;
  }
  .card-body {
    padding: 12px 6px 14px 6px;
    border-radius: 0 0 10px 10px;
    font-size: 1em;
  }
}

/* Blog cards: full width, readable */
@media (max-width: 700px) {
  #blog-list {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    width: 100vw;
    padding: 0 2vw;
  }
  .blog-card {
    max-width: 100vw;
    min-width: 0;
    border-radius: 10px;
    margin: 0 auto;
    padding: 0 0 10px 0;
  }
  .blog-card .blog-img {
    height: 100px;
    border-radius: 10px 10px 0 0;
  }
}

/* Footer: larger links, more spacing */
@media (max-width: 600px) {
  .footer-links {
    gap: 6px;
    font-size: 1em;
    margin-bottom: 12px;
    width: 100vw;
    padding: 0 2vw;
  }
  .footer-links a {
    padding: 10px 0;
    border-radius: 10px;
    font-size: 1em;
  }
  .newsletter input[type="email"], .newsletter button {
    font-size: 1em;
    border-radius: 10px;
    padding: 12px 8px;
  }
  .newsletter {
    padding: 0 2vw;
    max-width: 100vw;
  }
  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }
  footer {
    font-size: 1em;
    padding: 14px 0 8vw 0;
  }
}

/* Prevent horizontal scroll on all elements */
* {
  box-sizing: border-box;
  max-width: 100vw;
  word-break: break-word;
}
 .ariive-modal-footer {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-top: 18px;
                font-size: 1.08em;
                color: #0073e6;
                font-weight: 700;
                letter-spacing: 0.04em;
                text-shadow: 0 1px 8px rgba(0,0,0,0.10);
            }