/* Custom CSS Styles */

/* * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 } */

 body {
     font-family: 'Nimbus Sans Novus', sans-serif;
     background-color: #1a1a1a;
     color: #b4d5b8;
     line-height: 1.6;
 }

 img {
     max-height: 100%;
     max-width: 100%;
}

 /* Header Styles */
 .site-header {
     display: flex;
     background-color: #2d2d2d;
     /*padding: 1rem;*/
     /*position: fixed;*/
     width: 100%;
     top: 0;
     z-index: 1000;
 }

 .peoples-logo {
    float: left;
 }
 .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 1rem;
    /*background-color: #333;*/
 }


 .header-nav-container {
    /*display: flex;*/
    overflow: hidden;
    gap: 2rem; /* Space between links */
    font-family: 'Liberation', mono;
 }

 .header-nav-container a {
  float: right;
  display: block;
  padding: 14px 16px;
  text-decoration: none;
 }

  .header-nav-container .icon {
    display: none;
 }


 /*Top Menu Bar*/
/* .header-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
 }

 .header-nav-item a {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
 }*/


 .header-nav-item a:hover {
  background-color: #111111;
 }

 /* Container for main content */
 .site-content {
     max-width: 1200px;
     margin: 0 auto;
     padding: 2rem;
     transition: all 0.3s ease;
 }

 /* Hero section styling */
 .hero {
     padding: 4rem 0;
     text-align: center;
 }

 h1, h2, h3 {
     margin-bottom: 1rem;
 }

 /* Button styles */
 .btn {
     display: inline-block;
     padding: 0.8rem 1.5rem;
     border-radius: 8px;
     text-decoration: none;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
 }

 .btn-primary {
     background-color: #60A5FA;
     color: #ffffff !important;
 }

 .btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0,0,0,0.3);
 }

 /* Link styles */
 a {
     color: #60A5FA;
 }

 a:hover {
     color: #A5B4FC;
 }

 .services-section {
            padding: 50px 0;
            /*background-color: #f9f9f9;*/
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .services-container {
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .service-card {
            width: 300px;
            height: 400px;
            background-color: black;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            cursor: pointer;
        }

        .card-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .card-content {
            padding: 25px;
        }

        .card-title {
            font-size: 1.5em;
            margin-bottom: 15px;
            /*color: #333;*/
        }

        .card-description {
            font-size: 1em;
            line-height: 1.5;
            /*color: #666;*/
        }

/* Responsive Design */
@media screen and (max-width: 768px) {
    .site-header {
        display: block;
    }
    .header-nav-container a {display: none;}
    .header-nav-container a.icon {
        float: right;
        display: block;
    }
    .site-content {
        padding: 1rem;
    }
    .hero {
        padding: 2rem 0;
    }
    .services-container {
        flex-direction: column;
    }
    .service-card {
        width: 90%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .header-nav-container.responsive {position: relative;}
    .header-nav-container.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
  }
    .header-nav-container.responsive a {
        float: none;
        display: block;
        text-align: left;
  }
}

 /* Footer Styles */
 .site-footer {
     background-color: #2d2d2d;
     padding: 2rem;
     margin-top: 2rem;
 }

 .footer-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .footer-section {
    list-style-type: none;
    font-family: 'Liberation', mono;
}

 .social-icons img {
     width: 24px;
     height: 24px;
     margin-right: 1rem;
     border-radius: 50%;
 }

