
      /* Hero Section */
      .hero {
        background: linear-gradient(
          135deg,
          var(--primary-color),
          var(--primary-dark)
        );
        color: var(--text-light);
        padding: calc(var(--space-xxl) * 2) 0 var(--space-xxl);
        margin-top: 60px;
      }

      .hero-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
      }

      .hero h1 {
        font-size: 2.5rem;
        margin-bottom: var(--space-md);
      }

      .hero p {
        font-size: 1.1rem;
        margin-bottom: var(--space-lg);
        opacity: 0.9;
      }

      /* Contact Section */
      .contact-section {
        padding: var(--space-xxl) 0;
      }

      .contact-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-xl);
      }

      .contact-form {
        background-color: var(--bg-white);
        padding: var(--space-xl);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
      }

      .contact-form h2 {
        color: var(--primary-color);
        margin-bottom: var(--space-lg);
        position: relative;
        padding-bottom: var(--space-sm);
      }

      .contact-form h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--secondary-color);
      }

      .form-group {
        margin-bottom: var(--space-lg);
      }

      .form-group label {
        display: block;
        margin-bottom: var(--space-xs);
        color: var(--text-medium);
        font-weight: 500;
      }

      .form-control {
        width: 100%;
        padding: var(--space-md);
        border: 1px solid var(--bg-gray);
        border-radius: var(--radius-sm);
        transition: var(--transition-fast);
        font-size: 1rem;
      }

      .form-control:focus {
        outline: none;
        border-color: var(--primary-light);
        box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      .btn {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--text-light);
        border: none;
        border-radius: var(--radius-sm);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition-medium);
     
      }

      .btn:hover {
        background-color: var(--accent-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
      }

      .btn:active {
        transform: translateY(0);
      }

      /* Contact Info */
      .contact-info1 {
        background-color: var(--bg-white);
        padding: var(--space-xl);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
      }

      .contact-info1 h2 {
        color: var(--primary-color);
        margin-bottom: var(--space-lg);
        position: relative;
        padding-bottom: var(--space-sm);
      }

      .contact-info1 h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--secondary-color);
      }

      .info-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: var(--space-lg);
      }

      .info-icon {
        width: 40px;
        height: 40px;
        background-color: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: var(--space-md);
        color: var(--text-light);
        flex-shrink: 0;
      }

      .info-content h3 {
        font-size: 1.1rem;
        margin-bottom: var(--space-xs);
        color: var(--text-medium);
      }

      .info-content p,
      .info-content a {
        color: var(--text-dark);
        text-decoration: none;
        transition: var(--transition-fast);
      }

      .info-content a:hover {
        color: var(--primary-color);
      }

      /* Social Media */
     
      /* Map Section */
      .map-section {
        padding: var(--space-xxl) 0;
        background-color: var(--bg-gray);
      }

      .map-container {
        text-align: center;
      }

      .map-container h2 {
        color: var(--primary-color);
        margin-bottom: var(--space-lg);
        position: relative;
        display: inline-block;
        padding-bottom: var(--space-sm);
      }

      .map-container h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background-color: var(--secondary-color);
      }

      .map-frame {
        width: 100%;
        height: 400px;
        border: none;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
      }

     