    /* Reset and base styles */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      color: #e0e0e0;
      background: #121212;
    }
    header, main, footer {
      padding: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    header {
      background: #1e1e1e;
      text-align: center;
      padding: 4rem 2rem;
      border-bottom: 1px solid #333;
    }
    .header {
      padding: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    h2 {
      margin-bottom: 1rem;
      font-size: 1.8rem;
    }


    p {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto 2rem;
      opacity: 0.9;
    }
    .hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
      margin: 2rem 0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 4rem 0;
    }
    .card {
      background: #1e1e1e;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      text-align: center;
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-8px);
    }
    .card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }
    footer {
      text-align: center;
      background: #0d0d0d;
      color: #aaa;
      padding: 3rem 2rem;
      border-top: 1px solid #333;
    }
    /* Media queries for finer control (mobile-first) */
    @media (max-width: 768px) {
      h1 {
        font-size: 2rem;
      }
      .grid {
        grid-template-columns: 1fr;
      }
    }

    /* Reset and base styles */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      color: #e0e0e0;
      background: #121212;
    }
    header, main, footer {
      padding: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    header {
      background: #1e1e1e;
      text-align: center;
      padding: 4rem 2rem;
      border-bottom: 1px solid #333;
    }
    .header {
      padding: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    h2 {
      margin-bottom: 1rem;
      font-size: 1.8rem;
    }


    p {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto 2rem;
      opacity: 0.9;
    }
    .hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
      margin: 2rem 0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 4rem 0;
    }
    .card {
      background: #1e1e1e;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
      text-align: center;
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-8px);
    }
    .card img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }
    footer {
      text-align: center;
      background: #0d0d0d;
      color: #aaa;
      padding: 3rem 2rem;
      border-top: 1px solid #333;
    }
    /* Media queries for finer control (mobile-first) */
    @media (max-width: 768px) {
      h1 {
        font-size: 2rem;
      }
      .grid {
        grid-template-columns: 1fr;
      }
    }






.h1 {
	padding: 2px;
	font-size: 24px;
	}

body {
	background-color: #0a0a0a;
	color: #0076bc;
	font-family: Arial, sans-serif;
	text-align: center;
        }
        header {
	padding: 20px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: rgba(0, 118, 188, 0.2);
	height: 125px;
	width: 800px;
	display: block;
        }
        .hero {
	height: 85px;
	background-image: url(../images/reconai_logo_web.png);
	background-repeat: no-repeat;
	background-position: center center;
	left: 50%;
	right: 50%;
	display: block;
	max-width: 100%;
	width: 100%;
        }
        .features {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .feature-card {
	background: rgba(0, 234, 255, 0.1);
	padding: 20px;
	border-radius: 10px;
	border: 1px solid #0076bc;
	transition: opacity 0.3s ease-in-out;
        }
        .feature-card:hover {
            opacity: 1.0;
            background: rgba(0, 234, 255, 0.3);
        }
        button {
	background: #0076bc;
	color: #0a0a0a;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	transition: opacity 0.3s ease-in-out;
        }
        button:hover {
            opacity: 0.8;
        }
	.red {
	color: #e02826;
	}
footer {
	text-align: center;
	padding: 2px;
	border-top: 1px solid rgba(0, 118, 188, 0.2);
}

