/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  /* Base Styles */
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9; /* Softer background color */
    color: #4a4a4a; /* Softer text color */
  }
  
  header {
    background-image: none;
    background-color: #a8dadc; /* Softer header background */
    color: #1d3557; /* Softer header text color */
    text-align: center;
    padding: 20px 0;
  }
  
  
  nav {
    background: #e8491d;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    background: #457b9d; /* Softer navigation background */
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: #f1faee; /* Softer link color */
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
  }
  
  nav ul li a:hover {
    background: #a8dadc; /* Softer hover background color */
    color: #1d3557; /* Softer hover text color */
    border-radius: 4px;
  }
  
  .container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
  }
  
  section {
    padding: 20px 0;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
  }
  
  section:last-of-type {
    border: none;
  }
  
  h2 {
    margin-bottom: 10px;
    color: #35424a;
  }
  
  /* Portfolio Grid */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
  }
  
  .portfolio-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
    transition: transform 0.3s;
  }
  
  .portfolio-item:hover {
    transform: scale(1.02);
  }
  
  /* Contact Form */
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .contact-form button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    background: #35424a;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background: #2a363e;
  }
  
  /* Footer */
  footer {
    text-align: center;
    background: #a8dadc; /* Softer footer background */
    color: #1d3557; /* Softer footer text color */
    padding: 20px 0;
  }
