/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force ALL links to have no decoration */
a, a:link, a:visited, a:hover, a:active {
    text-decoration: none !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f0f4f8;
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

/* Header styles - exact copy from kairos.gr */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.container {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
}

h1 {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
}

.subtitle {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    opacity: 0.9;
    margin-top: 0.25rem;
}

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

.brand {
    flex: 0 0 auto;
}

.brand a,
.brand a:link,
.brand a:visited,
.brand a:hover,
.brand a:active {
    text-decoration: none !important;
    color: white !important;
    display: inline-block;
    transition: opacity 0.2s;
}

.brand a:hover {
    opacity: 0.9;
    color: white !important;
    text-decoration: none !important;
}

/* Main content */
main {
    flex: 1 0 auto;
    padding: 2rem 0;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    min-height: 60vh;
}

/* Stats Section */
.stats-section {
    text-align: center;
    padding: 2rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1e3c72;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2a5298;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}