/* index-style.css */

/* Base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6fa;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  /* Container for entire page content */
  .home-container {
    max-width: 1450px;
    margin: 15px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 28px; /* slightly reduced section spacing */
  }
  
  /* Branding section */
  .branding {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  .branding-logo {
    width: 70px;
    height: auto;
    object-fit: contain;
  }
  
  .branding-text {
    flex: 1;
  }
  
  .branding-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1f3b77;
    margin: 0 0 4px;
  }
  
  .branding-subtitle {
    font-size: 0.93rem;
    color: #4066b9;
    margin: 0;
  }
  
  /* Image section */
  .image-intro {
    display: flex;
    justify-content: center;
  }
  
  .intro-image {
    width: 100%;
    max-width: 1500px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    object-fit: cover;
  }
  
  /* Welcome section */
  .welcome-content {
    background-color: #ffffff;
    padding: 14px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  .welcome-heading {
    font-size: 1.28rem;
    font-weight: 600;
    color: #1f3b77;
    margin-bottom: 8px;
  }
  
  .welcome-description {
    font-size: 0.94rem;
    line-height: 1.4;
    color: #333;
    margin-bottom: 6px;
  }