 :root {
      --primary: #21759b;
      --primary-dark: #1a5f7a;
      --dark: #333333;
      --light: #F8F9FA;
      --transition: all 0.3s ease;
      --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.2);
      --gray: #6c757d;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background-color: white;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
      color: var(--dark);
    }

    p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      color: var(--dark);
    }

    a {
      text-decoration: none;
      color: var(--primary);
      transition: var(--transition);
    }

    a:hover {
      color: var(--primary-dark);
    }

    img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
    }

    ul {
      list-style: none;
      padding-left: 0;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
    }

    .section-title h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--dark);
    }

    .section-title p {
      max-width: 700px;
      margin: 0 auto;
      color: var(--gray);
    }

    .btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: var(--primary);
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      text-align: center;
    }

    .btn:hover {
      background-color: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
      color: white;
    }

    .btn-outline {
      background-color: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }

    .btn-outline:hover {
      background-color: var(--primary);
      color: white;
    }

    .text-center {
      text-align: center;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(33, 117, 155, 0.9), rgba(26, 95, 122, 0.9)), url('https://images.unsplash.com/photo-1559028012-481c04fa702d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
      background-size: cover;
      background-position: center;
      height: 70vh;
      min-height: 500px;
      display: flex;
      align-items: center;
      text-align: center;
      color: white;
      margin-top: 0;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      color: white;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
      animation: fadeInUp 1s ease;
    }

    .hero h1 span {
      color: #FFD700;
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
      animation: fadeInUp 1.2s ease;
    }

    .hero-btns {
      display: flex;
      gap: 20px;
      justify-content: center;
      animation: fadeInUp 1.4s ease;
    }

    /* Main Content */
    .main-content {
      background: var(--light);
      padding: 60px 0;
    }

    .content-block {
      background: white;
      padding: 40px;
      border-radius: 15px;
      box-shadow: var(--shadow);
      margin-bottom: 40px;
    }

    .content-block h2 {
      color: var(--primary);
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 3px solid var(--primary);
      font-size: 2rem;
    }

    .highlight-box {
      background: linear-gradient(135deg, #21759b, #1a5f7a);
      color: white;
      padding: 30px;
      border-radius: 10px;
      margin: 30px 0;
      box-shadow: var(--shadow);
    }

    .highlight-box h3 {
      color: white;
      margin-bottom: 20px;
    }

    .highlight-box ul {
      margin: 20px 0;
    }

    .highlight-box li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
    }

    .highlight-box li::before {
      content: '✓';
      position: absolute;
      left: 0;
      font-weight: bold;
      color: #FFD700;
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .service-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      text-align: center;
      border-top: 4px solid var(--primary);
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .service-icon {
      width: 70px;
      height: 70px;
      background: rgba(33, 117, 155, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.8rem;
      color: var(--primary);
    }

    /* Map Section */
    .map-section {
      background: white;
      padding: 60px 0;
    }

    .map-container {
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .map-wrapper {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .map-wrapper iframe {
      width: 100%;
      height: 400px;
      border: 0;
    }

    .contact-info-sidebar {
      flex: 1;
      background: var(--light);
      padding: 30px;
      border-radius: 10px;
      box-shadow: var(--shadow);
    }

    .contact-detail {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      padding: 15px;
      background: white;
      border-radius: 8px;
      transition: var(--transition);
    }

    .contact-detail:hover {
      transform: translateX(5px);
      box-shadow: var(--shadow);
    }

    .contact-detail i {
      width: 40px;
      height: 40px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      font-size: 1.2rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .map-container {
        flex-direction: column;
      }
      
      .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero-btns {
        flex-direction: column;
        gap: 15px;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
      
      .content-block {
        padding: 30px 20px;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2rem;
      }
      
      .section {
        padding: 60px 0;
      }
    }