/* Home Page Styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    line-height: 1.6;
}
.hero {
    background: #283593;
    color: #fff;
    padding: 6rem 0 5rem 0;
    text-align: center;
    position: relative;
    min-height: 480px;
}
.slideshow-container {
    position: relative;
    max-width: 800px;
    margin: auto;
}
.slide {
    display: none;
    padding: 2rem 1rem;
    animation: fadein 1s;
}
.slide.active {
    display: block;
}
@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 0.5rem 1rem;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(26,35,126,0.5);
    transform: translateY(-50%);
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev {
    left: 0;
}
.contact-btn {
    margin-top: 1.5rem;
    background: #ffb300;
    color: #1a237e;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-btn:hover {
    background: #ffa000;
}
