:root {
    --primary: #2C3E50;
    --secondary: #ECF0F1;
    --accent-blue: #3498DB;
    --accent-green: #2ECC71;
    --accent-red: #E74C3C;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: 3.5rem; margin-bottom: 2rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; border-left: 5px solid var(--accent-blue); padding-left: 15px; }
h3 { font-size: 1.5rem; margin-top: 1.5rem; }

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

section { padding: 100px 0; }

.hero-section {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 62, 80, 0.7);
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.btn-kipnoleg {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-blue);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
}

.btn-kipnoleg:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    color: var(--white);
}

.img-fluid-custom {
    width: 100%;
    max-width: 600px;
    height: auto;
    box-shadow: 20px 20px 0px var(--secondary);
}

.bg-light-gray { background-color: var(--secondary); }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}

.info-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.disclaimer-box {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.nav-fixed {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0; width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 2000;
    display: none;
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.table-custom th, .table-custom td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.table-custom th { background: var(--secondary); }

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    .container { padding: 0 20px; }
}