
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-form p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.contact-form form {
    display: grid;
    gap: 15px;
}

.contact-form label {
    font-size: 14px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 5px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #45a049;
}

.pillar-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pillar {
    text-align: center;
    width: calc(30% - 20px);
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillar img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.pillar h3 {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

.pillar p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.pillar:hover {
    transform: scale(1.05);
}
