/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header */
  .main-header {
    background-color: #000;
    color: #fff;
    padding: 1em 0;
  }
  
  .main-header .logo {
    font-size: 1.8em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5em;
  }
  
  .main-header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
  }
  
  .main-header nav ul li {
    margin-left: 20px;
  }
  
  .main-header nav ul li a {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .main-header nav ul li a:hover {
    color: #ffd700;
  }
  
  /* Hero Section */
  .hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    height: 80vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  
  .hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
  }
  
  .hero p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
  }
  
  .hero .btn-primary {
    background-color: #ffd700;
    color: #000;
    padding: 0.8em 1.5em;
    font-size: 1em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .hero .btn-primary:hover {
    background-color: #ffc107;
  }
  
  /* Section Headings */
  section h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    text-align: center;
    color: #000;
  }
  
  section p {
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 1.1em;
  }
  
  /* Highlights Section */
  .highlights ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .highlights ul li {
    background: #fff;
    border: 1px solid #ddd;
    padding: 1em;
    border-radius: 5px;
    width: calc(50% - 20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  /* Founder Section */
  .founder blockquote {
    font-style: italic;
    font-size: 1.2em;
    color: #555;
    margin: 1em 0;
    padding: 0.5em;
    border-left: 4px solid #ffd700;
  }
  
  /* Services Section */
  .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .service-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5em;
    width: calc(33.333% - 20px);
    margin-bottom: 20px;
    text-align: center;
  }
  
  .service-item h3 {
    margin-bottom: 1em;
    font-size: 1.5em;
    color: #000;
  }
  
  /* Experiences Section */
  .experience-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
  }
  
  .gallery-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    text-align: center;
    padding: 1.5em;
  }
  
  .gallery-item h3 {
    margin-bottom: 1em;
    font-size: 1.5em;
    color: #000;
  }
  
  /* Forms */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  form input,
  form select,
  form textarea {
    padding: 0.8em;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
  }
  
  form button {
    background-color: #ffd700;
    color: #000;
    padding: 0.8em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
  }
  
  form button:hover {
    background-color: #ffc107;
  }
  
  /* Footer */
  .main-footer {
    background: #000;
    color: #fff;
    padding: 1em 0;
    text-align: center;
    font-size: 0.9em;
  }