/*
 * General/Utility Styles
*/

* {
  -moz-box-sizing: border-box; /* Firexfox */
  -webkit-box-sizing: border-box; /* Safari/Chrome/iOS/Android */
  box-sizing: border-box; /* IE */
}


.clearfix:after {
  content: "";
  display: table;
  clear: both;
}


/* Mobile-first styles */
    body {
      font-family: 'Open Sans', sans-serif;
      line-height: 1.6;
      color: #333;
      margin: 0;
      padding: 0;
    }
    
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
    }
    
    /* Header styles */
    header {
      padding: 1rem;
      background-color: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .logo {
      max-width: 200px;
      height: auto;
    }
    
    /* Hero image */
    .hero {
      width: 100%;
      overflow: hidden;
      position: relative;
    }
    
    .hero img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    /* Gray container section */
    .graycontainer {
      background-color: #f5f5f5;
      padding: 2rem 0;
    }
    
    .about {
      width: 90%;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    
    .about h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    
    /* Services section */
    .services {
      padding: 2rem 0;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    
    .service {
      background-color: white;
      padding: 1.5rem;
      border-radius: 5px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .service h4 {
      color: #2c3e50;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }
    
    /* Profile section */
    .profile {
      padding: 2rem 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    
    .profile-pic {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      overflow: hidden;
    }
    
    .profile-pic img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* Footer */
    #footer {
      background-color: #2c3e50;
      color: white;
      padding: 2rem 1rem;
      text-align: center;
    }
    
    #footer a {
      color: #3498db;
      text-decoration: none;
    }
    
    #footer img {
      width: 30px;
      height: 30px;
      margin-top: 1rem;
    }
    
    /* Animation classes */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Utilities */
    .clearfix::after {
      content: "";
      display: table;
      clear: both;
    }
    
    /* Medium screens and up */
    @media (min-width: 768px) {
      .services {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
      }
      
      .service {
        flex: 0 0 calc(50% - 1rem);
      }
      
      .profile {
        flex-direction: row;
        text-align: left;
      }
      
      .experience {
        flex: 1;
      }
      
      .about h3 {
        font-size: 1.8rem;
      }
    }
    
/* Large screens */
    @media (min-width: 992px) {
      .service {
        flex: 0 0 calc(33.333% - 1.5rem);
      }
    }

/*
 * Button styles
*/

.button {
  background: rgb(255, 89, 95);
  color: white;
  text-decoration: none;
  display: block;
  padding: 0.75rem 5rem;
  border-bottom: 1px solid rgb(227, 25, 29);
  border-radius: 2px;
  width: 95%;
  margin: 0 auto;
}


