body {
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #e0e7ff 0%, #ffffff 100%);
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

main {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    width: 80vw;
    max-width: 1200px;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(34, 34, 61, 0.15);
    padding: 2.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glide__slide {
    height: 60vh;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e7ff;
    padding: 0;
}

.glide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    transition: transform 0.3s;
    background: #e0e7ff;
}

.glide__arrow {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    box-shadow: 0 3px 9px rgba(34, 34, 61, 0.10);
    cursor: pointer;
    margin: 0 10px;
}

.glide__arrow:hover, .glide__arrow:focus {
    background: #1e40af;
}

.glide__bullets {
    text-align: center;
    margin-top: 16px;
}

.glide__bullet {
    width: 12px;
    height: 12px;
    background: #2563eb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    opacity: 0.4;
    transition: opacity 0.2s;
    cursor: pointer;
    border: 2px solid white;
}
.glide__bullet--active {
    opacity: 1;
    background: #1e40af;
}

.glide__track{
	border-radius: 24px;
}

.glide__arrows{
	text-align:center;
	margin-top:25px;
}

.glide__arrow {
	background: initial;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    box-shadow: 0 3px 9px rgba(34, 34, 61, 0.10);
    cursor: pointer;
    margin: 0 10px;
    color: black;
    border: 1px solid grey;
}

.glide__arrow span{
	margin-top: -5px;
	float: left;
}

.glide__arrow:hover, .glide__arrow:focus {
    background: grey;
	color: white;
}

header h2 {
    margin-top: 80px;
    text-align: center;
}