/* Global Styles */
html {
    font-size: 16px;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    color: hsl(11, 1%, 43%);
    background-color: #f8f9fa;
  }
  
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Header Styles */
  header {
    background-color: #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  
  .header-logo {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
  }
  
  .header-menu {
    display: flex;
    gap: 20px;
  }

  
  .header-menu a {
    font-family: "Roboto", sans-serif;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .header-menu a:hover {
    color: #007bff;
  }
  
  /* Landing Styles */
  .landing {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  

  
  .landing-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
  }
  
  .landing h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0;
  }
  
  .landing h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 50px;
  }
  
  .landing .btn-learn-more {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
  }
  
  .landing .btn-learn-more:hover {
    background-color: #ffffff;
  }

    
  /* Parallax effect */
  @media (min-width: 992px) {
    .landing {
      background-attachment: fixed;
      background-position: center;
    }
    
    .landing:before {
      position: fixed;
    }
    
    .landing-overlay {
      position: fixed;
    }
  }

  
  /* Text Block Styles */
  .text-block {
    padding: 50px 15px;
    max-width: 768px;
    margin: 0 auto;
    text-align: left;
  }
  
  .text-block h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
  }
  
  .text-block h3 {
    font-size: 2rem;
    font-weight: 300;
    color: hsl(11, 1%, 43%);
  }
  
  .text-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 25px;
  }

  .text-block img {
    display: block;
    margin: 0 auto;
    max-width: 450px;
  }
  
  .text-block button.btn-learn-more {
    display: inline-block;
    margin-top: 50px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
  }
  
  .text-block button.btn-learn-more:hover {
    background-color: #0056b3;
  }


  .text-block .highlighted-text {
    background-color: #f8f9fa;
    padding: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
  .text-block .highlighted-text p {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .text-block blockquote {
    margin-top: 30px;
    margin-bottom: 30px;
    font-style: italic;
  }
  
  .text-block blockquote p {
    margin-bottom: 10px;
  }
  
  .text-block blockquote footer {
    font-style: normal;
    font-weight: bold;
    text-align: right;
  }
  
  
  /* Footer Styles */
  .footer {
    background-color: #000;
    padding: 20px 0;
  }

  .footer-info a {
    color: #fff;
  }
  
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
  }
  
  .footer-info span {
    font-size: 0.9rem;
  }
  
  .footer-info span:first-child {
    margin-right: auto;
  }
  
  .footer-icons {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .footer-icons .social-logo {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  
  .footer-icons .social-logo:hover {
    background-color: #007bff;
  }
  
  .footer-icons .social-logo img {
    max-width: 100%;
    height: auto;
  }
  
  .footer-text {
    font-size: 0.8rem;
    color: hsl(11, 1%, 43%);
  }
}  