﻿ .small {
        font-size: 67%;
    }
    h5{
        text-align:center;
    }

   
    /* Staff Section */
    .staff-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 50px;
    }

    .staff-card {
        background-color: ghostwhite;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 20px;
    }

        .staff-card img {
            width: 250px;
            height: 250px;
            /* object-fit: cover; */
            border-radius: 10%;
            margin-bottom: 10%;
        }


        .staff-card h3 {
            margin: 10px 0;
            font-size: 22px;
            color: #333;
        }

        .staff-card p {
            color: #555;
            font-size: 12px;
            max-height: 20px;
            text-align: center;
        }

    /* Contact Section */
    .contact-section {
        background-color: #fff;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

        .contact-section h2 {
            margin-bottom: 30px;
            font-size: 28px;
            color: #333;
            text-align: center;
        }

        .contact-section form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-section input, .contact-section textarea {
            padding: 15px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .contact-section button {
            padding: 15px;
            background-color: #333;
            color: white;
            font-size: 18px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

            .contact-section button:hover {
                background-color: #555;
            }

    .site-content {
        background-color: #f4f4f4;
    }

    p.align {
        /* text-align: right; */
        text-align: unset;
        text-align-last: unset;
        /* text-align: right; */
        /* line-height: 1.5; */
        /* word-spacing: -3px; */
        /* text-indent: 24px; */
    }