/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  :root {
    --primary: #004080;
    --accent: #00bfff;
    --background: #f5f7fa;
    --white: #ffffff;
    --text: #333333;
    --dark: #1c1c1c;
  }
  
  body {
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
  }
  
  /* Header */
  header {
    background-color: var(--primary);
    color: var(--white);
    padding: 20px;
    text-align: center;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  header p {
    font-size: 1.1rem;
    color: var(--accent);
  }
  
  /* Navigation */
  nav {
    background: var(--dark);
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px;
    flex-wrap: wrap;
  }
  
  nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: var(--accent);
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* Hero */
  .hero {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .cta-button {
    display: inline-block;
    margin-top: 20px;
    background-color: var(--white);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
  }
  
  .cta-button:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  
  /* Projects */
  .project {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    gap: 20px;
  }
  
  .project img {
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
  }
  
  .project-text {
    flex: 1;
  }
  
  .project-text h3 {
    color: var(--primary);
    margin-bottom: 10px;
  }
  
  .project-text p {
    margin-bottom: 10px;
  }
  
  .project-text a {
    text-decoration: none;
    color: var(--accent);
    font-weight: bold;
  }
  
  /* Services */
  .services-section ul {
    list-style: none;
    padding-left: 0;
  }
  
  .services-section li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
  }
  
  /* Contact */
  .contact-section p {
    margin-bottom: 20px;
  }
  
  .contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
  }
  
  .contact-form button {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background: var(--accent);
  }
  
  /* Footer */
  footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 20px;
    margin-top: 60px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 2rem;
    }
  
    nav {
      flex-direction: column;
      gap: 10px;
    }
  
    .project {
      flex-direction: column;
      text-align: center;
    }
  
    .project img {
      max-width: 100%;
      margin-bottom: 15px;
    }
  
    .project-text {
      text-align: left;
    }
  }
  