/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Base styles */
  body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
  }
  
  main {
    width: 992px;
    margin: 0 auto;
    background: white;
    border: 1px solid #ccc;
  }
  
  /* Utility */
  .clear {
    clear: both;
  }
  
  .center {
    text-align: center;
    padding: 20px;
  }

  .nav {
    background-color: gray;
  }
  
  /* Navigation */
  a {
    text-decoration: none;
    color: blue;
    font-weight: bold;
    margin: 0 10px;
  }
  
  a:hover {
    color: darkblue;
  }
  
  /* CTA Buttons */
  .cta-hero {
    display: inline-block;
    background-color: blue;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
  }
  
  .cta-bottom {
    display: inline-block;
    background-color: blue;
    color: white;
    padding: 10px 20px;
    margin-top: 40px;
  }
  
  /* Section Containers */
  section {
     background: white;
    padding: 15px;
  }
  
  /* Grey Background Section */
  .grey-bg {
    background-color: #f2f2f2;
  }
  
  /* Hero Section */
  .half {
    width: 50%;
    float: left;
    padding: 30px;
    height: 300px;
  }

  .clear .leftside {
  
    padding: 80px;
  }

  .leftside h1,
  .leftside p {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .rightside img {
    width: 100%;
    height: auto;
    border: 2px solid #ccc;
  }
  
  /* 4 Image Grid */
  .center-text {
    text-align: center;
    padding: 30px;
  }
  
  .quarter {
    width: 25%;
    float: left;
    padding: 10px;
  }
  
  .quarter img {
    width: 100%;
    height: auto;
    border: 2px solid #bbb;
  }
  
  /* 2 Image with Caption */
  .image-text img {
    width: 100%;
    height: auto;
    border: 2px solid #aaa;
    margin-bottom: 10px;
  }
  
  .image-text p {
    text-align: center;
    font-size: 14px;
    color: #444;
  }

  .cta-bottom-1 {
    display: inline-block;
    background-color: blue;
    color: white;
    padding: 10px 20px;
    margin-top: 100px;
    text-decoration: none;
  }
  
  /* Footer */
  footer {
    text-align: center;
    font-size: 14px;
    padding: 20px;
    background: #ddd;
    
  }
  
  /* Page 2 Specific Layout */

 /* Page 2 Layout */

/* Hero image */
.hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid #ccc;
  }
  
  /* Hero text (right side) */
  .hero-text {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  /* CTA styling  */
  .cta-hero {
    display: inline-block;
    background-color: blue;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 10%;
  }

  .clear .hero-text{
    padding: 90px;
  }
  
  /* Circle section */

  p{
    margin-top: 10px;
  }
  .third {
    width: 33.33%;
    float: left;
    padding: 15px;
    
  }
  
  .circle-img {
    width: 150px;
    height: 150px;
    border: 2px solid #aaa;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px auto;
  }
  
  .circle-text {
    max-width: 220px;
    margin: 0 auto;
    text-align: left;
    font-size: 14px;
    color: #444;
  }
  
  /* Grey section */
  .grey-bg {
    background-color: #f2f2f2;
    padding: 30px;
  }
  
  .row {
    margin-bottom: 30px;
  }
  
  .side-img {
    width: 80%;
    height: auto;
    object-fit: cover;
    border: 2px solid #ccc;
  }
  
  .text-left {
    padding: 30px;
  }

  section.grey-bg .row .text-left h2,
section.grey-bg .row .text-left p {
  text-align: left;
  padding: 0 80px; /* remove inherited padding if needed */
}
  

  /* PAGE 3 */
 

/* Hero Banner */
.hero-banner {
    background-image: url("/images/hero1.jpg");
    height: 400px;
    background-size: cover;
    background-position: center;
   }
  
  .hero-overlay {
    padding-top: 120px;
    color: red
  }
  
  /* Grey Section */
  .grey-bg {
    background-color: #f2f2f2;
    padding: 30px 0;
  }
  
  .grey-bg h2,
  .grey-bg p {
    text-align: center;
    padding: 10px 40px;
  }
  
  /* Container for grid only */
  .narrow {
    width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Image Grid */
  .grid-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 2px solid #ccc;
    display: block;
    margin: 0 auto;
  }

  .grid-img img {
    width: 100%;
    height: auto;
    border: 2px solid #ccc;
  }
  
  .half {
    width: 50%;
    float: left;
    padding: 15px;
  }
  
  .third {
    width: 33.33%;
    float: left;
    padding: 15px;
  }
  
  .full {
    width: 100%;
    padding: 15px;
  }
  
  /* CTA Buttons */
  .cta-hero,
  .cta-bottom {
    display: inline-block;
    background-color: blue;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
  }

 
  