/* Global */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f3f3f3;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */
.header {
    background: #1f1f1f;
    color: white;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    object-fit: contain;
}

.contact-info p {
    margin: 2px 0;
    font-size: 0.95rem;
}

/* Slider */
.slider {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 260px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

/* Info section */
.info {
    padding: 40px 0;
}

.info h2 {
    text-align: center;
    margin-bottom: 20px;
}

.cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Footer */
.footer {
    background: #1f1f1f;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}
