/* FlexChip Labs Website Styles */

/* Global */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
  }
  
  /* Header */
  header {
    background: #003366; /* Tech Blue */
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  header h1 {
    margin: 0;
  }
  
  nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav a:hover {
    color: #33CC99; /* Accent Green */
  }
  
  /* Hero Section */
  .hero {
    background: #e6f2ff;
    padding: 60px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5em;
    color: #003366;
  }
  
  .hero p {
    font-size: 1.2em;
    color: #333;
  }
  
  .btn {
    background: #33CC99;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
  }
  
  .btn:hover {
    background: #28a87a;
  }
  
  /* Sections */
  .section {
    padding: 40px;
    text-align: center;
  }
  
  .section h2 {
    color: #003366;
    margin-bottom: 20px;
  }
  
  /* Grid Layout */
  .grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .card {
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 250px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
  }
  
  .card h3 {
    color: #003366;
  }
  
  /* Footer */
  footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
  }
  