/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.8;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #444;
  }
  
  .logo img {
    width: 120px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    padding: 5px 10px;
    transition: background-color 0.3s;
  }
  
  nav ul li a.active, 
  nav ul li a:hover {
    background-color: #e89033;
    border-radius: 5px;
  }
  
.work-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

h1 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #222;
    font-weight: bold;
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.work-step {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.work-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.work-step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #007BFF;
    font-weight: bold;
}

.work-step p {
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}

@media (max-width: 768px) {
    .work-steps {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2rem;
    }
    .work-step {
        padding: 20px;
    }
}
