:root {
    --primary: #0a2c6b;
    --secondary: #ffffff;
    --accent: #1e90ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

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

.header {
    background: var(--primary);
    padding: 0.5rem 0;
	background: #002060;
}

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

.logo {
    height: 160px;
}

.nav a {
    color: white;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: linear-gradient(rgba(10,44,107,0.8), rgba(10,44,107,0.8)),
                url('images/hero.jpg') center/cover no-repeat;
    color: white;
    padding: 1rem 0;
    text-align: center;
	background: #002060;

}

.hero h1 {
    font-size: 2.5rem;
}

.btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
	background: #C1C6C7;

}

.section {
    padding: 4rem 0;
}

.section.light {
    background: #f4f4f4;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 15px 15px;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/******/

/*
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        max-width: 900px;
        margin: 20px auto;
        font-family: Arial, sans-serif;
    }
*/
    .accordion-item {
        background: #fff;
        border-radius: 5px;
 		box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        overflow: hidden;
    }

/*
    .card {
        background: #007acc;
        color: #fff;
        padding: 20px;
        cursor: pointer;
        font-weight: bold;
        text-align: center;
    }
*/
    .card:hover {
        background: #fafafa;
    }
    .card-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f4f4f4;
        padding: 0 15px;
    }
    .card-content p {
        margin: 15px 0;
        color: #333;
    }

    .accordion-item.active .card-content {
        max-height: 100px;
    }

/*******/




.footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 1rem 0;
	background: #002060;
}

.footer a {
 	color: #ccc;
  	text-decoration: underline;
}

/* 📱 Responsive Navigation */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }

    .nav {
        margin-top: 0.5rem;
    }

    .nav a {
        margin: 0 0.5rem;
    }
}

/* 🍪 Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0a2c6b;
    color: white;
    padding: 1rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    max-width: 70%;
}

.cookie-banner a {
    color: #1e90ff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

.cookie-buttons button.secondary {
    background: #ccc;
    color: #000;
}

.cookie-buttons button:not(.secondary) {
    background: #1e90ff;
    color: #fff;
}
/*
    .accordion-item.active .card-content {
        max-height: 300px;
    }
    .accordion-item {
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        overflow: hidden;
    } 
*/
/* 📱 Mobile */
@media (max-width: 768px) {
/* 
 .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner p {
        max-width: 100%;
        margin-bottom: 0.5rem;
    }
}
        .accordion {
            max-width: 600px;
            margin: auto;
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .accordion-item {
            border-bottom: 1px solid #ddd;
        }

        .accordion-header {
            background: #007acc;
            color: #fff;
            padding: 15px;
            cursor: pointer;
            user-select: none;
            font-weight: bold;
        }

        .accordion-header:hover {
            background: #005fa3;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 15px;
            background: #fafafa;
        }

        .accordion-content p {
            margin: 15px 0;
        }

        .accordion-item.active .accordion-content {
            max-height: 200px;
        }
		*/