* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: cover;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

.container-wide {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 80%;
    margin: 20px auto;
}


/* Image Grid CSS */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 10px;
    margin-bottom: 20px;
}

.grid-item img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.grid-item img:hover {
    transform: scale(1.05);
}




.logo-placeholder {
    margin-bottom: 20px;
}

.logo {
    width: 100px;
    height: auto;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e67e22; /* Main accent color */
}

.description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    text-align: justify;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}


/* Image Slider CSS */
.slider {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.slides {
    width: 500%;
    display: flex;
    animation: slide 10s infinite;
}

.slide {
    width: 20%;
    transition: 0.6s ease;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}


@keyframes slide {
    0% {
        margin-left: 0;
    }
    20% {
        margin-left: 0;
    }
    25% {
        margin-left: -20%;
    }
    45% {
        margin-left: -20%;
    }
    50% {
        margin-left: -40%;
    }
    70% {
        margin-left: -40%;
    }
    75% {
        margin-left: -60%;
    }
    95% {
        margin-left: -60%;
    }
    100% {
        margin-left: -80%;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .logo {
        width: 80px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    .description {
        font-size: 14px;
    }

    .contact-info p {
        font-size: 14px;
    }
}
