:root {
    --bg-main: #fff;
    --footer: #111;
    --blue-box: #f9f9f9;
    --text-color: #333;
    --button-call-over: #111;
    --shadow: rgba(0,0,0,0.1);
    --h2-title: #000;
}
@media(prefers-color-scheme: dark) {
    :root {
        --bg-main: #111;
        --footer: #222;
        --blue-box: #222;
        --text-color: #fff;
        --button-call-over: #E6C995;
        --shadow: rgba(255,255,255,0.1);
        --h2-title: #fff;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--bg-main);
}

header {
    background-color: #2C3481;
    padding: 20px;
    text-align: center;
    border-bottom: 4px solid var(--footer);
}
header img {
    width: 200px;
    height: auto;
}
header .cta-button {
    background-color: var(--blue-box);
    color: var(--text-color);
}
header .cta-button:hover {
    background-color: #E6C995;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px var(--shadow);
}

.blue-box {
    border-radius: 8px;
    background: var(--blue-box);
    padding: 30px;
    border-top: 4px solid #2C3481;
}

.contact-item {
    text-align: center;
    margin: 15px;
    flex: 1;
    min-width: 250px;
}
.contact-item h3 {
    color: var(--h2-title);
    margin-bottom: 10px;
    font-size: 1.4em;
}
.contact-item p {
    font-size: 1.2em;
    margin: 5px 0;
}
.button-call {
    background-color: #2C3481;
    color: #f9f9f9;
}
.button-call:hover {
    background-color: var(--button-call-over);
}
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 1.1em;
    transition: background 0.3s;
}

.gallery-title {
    text-align: center;
    margin-top: 60px;
    color: var(--h2-title);
}

footer {
    background: var(--footer);
    color: #ccc;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: inherit;
    text-decoration: none;
    margin: 10px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.card {
    background-color: #e6e6e6;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-caption {
    padding: 15px;
    text-align: center;
    background-color: #e6e6e6;
}

.card-caption p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

.link {
    text-decoration: none;
}

.slider-container {
    width: 90%;
    max-width: 600px;
    height: 350px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid #2C3481;
    box-sizing: border-box;
}

.slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}