/* Base font settings */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
  }
  
  /* Header styling */
  header {
    background-color: #343a40;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
  }

  .top-banner {
    width: 100%;
    min-height: 300px;
    /* Use your background image: */
    background: url("https://gravitasdiscover.com/assets/gravitas-banner-02.png")
                no-repeat center center;
    background-size: cover;
    margin: 0;
    padding: 0;
  }
  
  /* Container for main content */
.container {
    max-width: 800px; /* Adjust based on your design preferences */
    margin: 0 auto; /* Centers the container */
    padding: 0 15px; /* Optional: Adds horizontal padding */
  }

  img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes bottom space in some browsers */
    margin: 0 auto; /* Optional: Centers the image */
  }  
  
  header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin: 0;
  }
  
  /* Section styling */
  section {
    padding: 4rem 0;
  }
  
  section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: left !important;
  }
  
  /* Button styling */
  .btn-custom {
    background-color: #007bff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.3rem;
    transition: background-color 0.3s ease;
  }

  .btn-custom:hover {
    background-color: #0056b3;
    text-decoration: none;
    color: #fff;
  }

  .btn.btn-dark {
    margin-bottom: 24px;
  }
  
  /* Image styling */
  img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .video-container {
    position: relative;
    width: 100%; /* Full width */
    max-width: 800px; /* Optional: Limit max size */
    aspect-ratio: 16 / 9; /* Keeps a perfect 16:9 aspect ratio */
    margin: 0 auto; /* Center the video */
  }

  .video-container iframe {
    width: 100%; /* Make iframe take full width */
    height: 100%; /* Maintain height based on aspect ratio */
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* Footer styling */
  footer {
    background-color: #343a40;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
  }
  
  /* Smooth scrolling for internal links */
  html {
    scroll-behavior: smooth;
  }
  
