        /* Additional custom styling for this page */
    
      
          /* Contact Info Cards */
          .contact-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
          }
          .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
          }
          .contact-card i {
            font-size: 36px;
            color: #94c045; /* Green accent */
            margin-bottom: 10px;
          }
          .contact-card h4 {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 10px;
            color: #3c4133;
          }
          .contact-card p {
            font-size: 14px;
            color: #555;
            margin-bottom: 0;
          }
      
          /* Contact Form styling overrides */
          .contact .php-email-form input,
          .contact .php-email-form textarea {
            border-radius: 4px;
            box-shadow: none;
            font-size: 14px;
          }
          .contact .php-email-form button[type=submit] {
            background-color: #94c045; 
            border: 2px solid #94c045; 
            color: #fff;
            border-radius: 50px;
            padding: 8px 30px;
            transition: 0.3s;
          }
          .contact .php-email-form button[type=submit]:hover {
            background: #9fc658;
            border-color: #9fc658;
            color: #fff;
          }
      
          /* Optional map styling */
          .map-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 10px;
            height: 350px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          }
          .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
          }