
        .container {
            max-width: 1200px;
            margin: 0 auto;
           
        }

        .main-heading {
            text-align: center;
            color: #209ad6;
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .intro-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 1.1em;
            color: #666;
            padding: 0 20px;
        }

     .pe-contact-section {
    display: flex;
    flex-direction: row;   /* row instead of column */
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start; /* align items at top */
    justify-content: center; /* center horizontally */
    flex-wrap: wrap; /* make it responsive */
}

.pe-contact-info-wrapper,
.pe-contact-form-wrapper {
    flex: 1; /* allow both to take equal space */
    max-width: 500px; /* keep reasonable width */
}

        .pe-contact-info-wrapper {
            background: #f8f9fa;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 800px;
        }

        .pe-contact-form-wrapper {
            background: white;
            padding: 40px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 600px;
        }

        .pe-contact-info h3 {
            color: #209ad6;
            margin-bottom: 30px;
            font-size: 1.4em;
            text-align: center;
        }

        .pe-contact-boxes {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .pe-contact-box {
            background: white;
            padding: 30px;
            text-align: center;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .pe-contact-box:hover {
            border-color: #209ad6;
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(44, 85, 48, 0.1);
        }

        .pe-contact-box .pe-icon {
            font-size: 2em;
            margin-bottom: 15px;
            margin: 0 auto;
            display: block;
            color: #209ad6;
        }

        .pe-contact-box h4 {
            color: #209ad6;
            font-size: 1.2em;
            font-weight: bold;
        }

        .pe-contact-box p {
            margin-bottom: 8px;
            font-size: 24px;
            line-height: 1.5;
        }

        .pe-contact-box .pe-address-text {
            font-size: 1em;
        }

        .icon {
            margin-right: 8px;
            color: #209ad6;
        }

        .pe-contact-form {
            background: white;
        }

        .pe-contact-form h3 {
            color: #209ad6;
            margin-bottom: 20px;
            font-size: 1.4em;
            text-align: center;
        }

        .pe-form-group {
            margin-bottom: 20px;
        }

        .pe-form-group label {
            display: block;
            margin-bottom: 5px;
            color: #333;
            font-weight: 500;
        }

        .pe-form-group input,
        .pe-form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .pe-form-group input:focus,
        .pe-form-group textarea:focus {
            outline: none;
            border-color: #209ad6;
        }

        .pe-form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .pe-submit-btn {
            background-color: #209ad6;
            color: white;
            padding: 12px 30px;
            border: none;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }

        .pe-submit-btn:hover {
            background-color: #1a3d1f;
        }

        .departments {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

.department-card {
  background: white;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 2px solid #209ad6;

  display: flex;            /* flex layout */
  flex-direction: column;   /* stack children vertically */
}

.department-card .email {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 10px;
  margin-top: auto;   /* pushes email row to bottom */
}

        .department-card h3 {
            color: #209ad6;
            margin-bottom: 15px;
            font-size: 1.3em;
        }

        .department-card p {
            margin-bottom: 15px;
            color: #666;
        }


.department-card .email img {
  width: 24px;  /* smaller & consistent size */
  height: auto;
}


        .social-section {
            background: white;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .social-section h3 {
            color: #209ad6;
            margin-bottom: 20px;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-link {
            color: white;
            padding: 12px 20px;
            text-decoration: none;
            transition: background-color 0.3s;
            font-weight: 500;
            width: 100px;
        }

        .social-link:hover {
            background-color: #209ad6;
        }

        .pe-map-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: white;
            padding: 30px 0;
            text-align: center;
        }

        .pe-map-section h3 {
            color: #209ad6;
            margin-bottom: 20px;
            font-size: 1.4em;
        }

        .pe-map-container {
            width: 100%;
            height: 450px;
            margin-top: 20px;
        }

        .pe-map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 768px) {
            .pe-contact-section {
                gap: 30px;
                padding: 20px;
            }

            .pe-contact-info-wrapper,
            .pe-contact-form-wrapper {
                padding: 20px;
            }

            .main-heading {
                font-size: 2em;
            }

            .departments {
                grid-template-columns: 1fr;
            }

            .social-links {
                flex-direction: column;
                align-items: center;
            }

            .container {
                padding: 10px;
            }
        }