
    :root {
      --primary-color: #23504B;
      --primary-light: #2d645e;
      --primary-dark: #1a3c38;
      --accent-color: #3a9e8f;
    }

    /* Additional custom styles for the contact page */
    .contact-hero {
      background: linear-gradient(rgba(35, 80, 75, 0.85), rgba(35, 80, 75, 0.9)), url('images/contact-bg.jpg') center/cover no-repeat;
      padding: 120px 0 80px;
      color: white;
      text-align: center;
    }

    .contact-hero h1 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .contact-hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
    }

    .contact-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(35, 80, 75, 0.1);
      padding: 30px;
      margin-bottom: 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }

    .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(35, 80, 75, 0.15);
    }

    .contact-icon {
      font-size: 3rem;
      color: var(--primary-color);
      margin-bottom: 20px;
      display: inline-block;
      padding: 15px;
      background: rgba(35, 80, 75, 0.1);
      border-radius: 50%;
    }

    .contact-form {
      background: white;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(35, 80, 75, 0.1);
      padding: 40px;
    }

    .form-control {
      border-radius: 8px;
      padding: 12px 15px;
      border: 1px solid #e0e0e0;
      transition: all 0.3s;
    }

    .form-control:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.2rem rgba(35, 80, 75, 0.25);
    }

    .btn-main {
      background: var(--primary-color);
      border: none;
      padding: 12px 30px;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s;
      color: white;
    }

    .btn-main:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(35, 80, 75, 0.3);
      color: white;
    }

    .map-container {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(35, 80, 75, 0.1);
      border: 1px solid rgba(35, 80, 75, 0.1);
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
    }

    .contact-info-icon {
      background: rgba(35, 80, 75, 0.1);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      color: var(--primary-color);
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .section-title {
      position: relative;
      margin-bottom: 40px;
      color: var(--primary-color);
      font-weight: 700;
    }

    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(35, 80, 75, 0.1);
      color: var(--primary-color);
      margin-right: 10px;
      transition: all 0.3s;
      text-decoration: none;
    }

    .social-icons a:hover {
      background: var(--primary-color);
      color: white;
      transform: translateY(-5px);
    }

    .feature-badge {
      display: inline-block;
      background: var(--primary-color);
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .contact-divider {
      height: 2px;
      background: linear-gradient(to right, transparent, rgba(35, 80, 75, 0.3), transparent);
      margin: 40px 0;
    }

    .contact-subtitle {
      color: var(--primary-light);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .contact-description {
      color: #666;
      line-height: 1.6;
    }

    .form-label {
      font-weight: 600;
      color: var(--primary-dark);
      margin-bottom: 8px;
    }

    .success {
      color: #28a745;
      padding: 12px 15px;
      background: rgba(40, 167, 69, 0.1);
      border-radius: 8px;
      border-left: 4px solid #28a745;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: fadeIn 0.5s ease-in;
    }

    .error {
      color: #dc3545;
      padding: 12px 15px;
      background: rgba(220, 53, 69, 0.1);
      border-radius: 8px;
      border-left: 4px solid #dc3545;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: fadeIn 0.5s ease-in;
    }

    .contact-stats {
      background: var(--primary-color);
      color: white;
      padding: 60px 0;
      border-radius: 12px;
      margin: 60px 0;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .stat-label {
      font-size: 1rem;
      opacity: 0.9;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .fade-out {
      animation: fadeOut 0.5s ease-out forwards;
    }

    @keyframes fadeOut {
      from { opacity: 1; transform: translateY(0); }
      to { opacity: 0; transform: translateY(-10px); }
    }