:root {
    --bg-body: #f4f7f6;      /* Πολύ ανοιχτό γκρι/μπλε για το φόντο */
    --white: #ffffff;
    --primary: #2d3436;      /* Σκούρο γκρι για κείμενα */
    --accent: #d32f2f;       /* Κόκκινο της φωτιάς/κρέατος */
    --card-border: #e0e0e0;
    --text-muted: #636e72;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--primary);
    line-height: 1.6;
}

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

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo { 
    font-size: 1.4rem; 
    font-weight: 800; 
    letter-spacing: 0.5px; 
    color: var(--primary);
}

.logo span { 
    color: var(--accent); 
}

.nav-links { 
    display: flex; 
    list-style: none; 
}

.nav-links li { 
    margin-left: 25px; 
}

.nav-links a { 
    color: var(--primary); 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 600; 
    transition: 0.3s; 
}

.nav-links a:hover { 
    color: var(--accent); 
}

/* Hero Section */
.hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    border-bottom: 1px solid var(--card-border);
}

.hero h1 { 
    font-size: 3rem; 
    margin-bottom: 10px; 
    color: var(--primary);
}

.hero p { 
    color: var(--accent); 
    letter-spacing: 2px; 
    font-weight: 500; 
    text-transform: uppercase;
}

.hero-line { 
    width: 60px; 
    height: 4px; 
    background: var(--accent); 
    margin: 20px auto; 
}

/* Sections */
.section { 
    padding: 80px 0; 
}

.section-title { 
    text-align: center; 
    margin-bottom: 50px; 
    font-size: 2.2rem; 
    font-weight: 700; 
    color: var(--primary);
}

.bg-white { 
    background-color: var(--white); 
}

/* Publicity Cards (Light Style) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pub-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.pub-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--accent); 
}

.card-icon { 
    font-size: 2rem; 
    color: var(--accent); 
    margin-bottom: 15px; 
}

.pub-card h3 { 
    margin-bottom: 20px; 
    font-size: 1.3rem; 
    color: var(--primary);
}

.pub-card ul { 
    list-style: none; 
}

.pub-card ul li { 
    margin-bottom: 15px; 
    font-size: 0.95rem; 
    color: var(--text-muted); 
    border-bottom: 1px solid #f0f0f0; 
    padding-bottom: 8px; 
}

.pub-card ul li strong { 
    color: var(--primary); 
    font-weight: 700; 
    display: block; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    margin-bottom: 3px; 
}

.sub-li { 
    padding-left: 10px !important; 
    color: var(--accent) !important; 
    font-weight: 600;
    border: none !important; 
}

/* Financials Area */
.docs-container { 
    max-width: 800px; 
    margin: 0 auto; 
}

.doc-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px; 
    background: var(--white); 
    margin-bottom: 12px; 
    border-radius: 8px; 
    border: 1px solid var(--card-border);
}

.btn-outline { 
    padding: 8px 18px; 
    border: 2px solid var(--accent); 
    color: var(--accent); 
    text-decoration: none; 
    border-radius: 6px; 
    font-size: 0.85rem; 
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover { 
    background: var(--accent); 
    color: var(--white); 
}

/* Contact Info */
.contact-details { 
    display: flex; 
    justify-content: space-around; 
    flex-wrap: wrap; 
    gap: 30px;
    text-align: center;
}

.c-item i { 
    font-size: 1.8rem; 
    color: var(--accent); 
    margin-bottom: 15px; 
    display: block; 
}

.c-item p {
    font-weight: 500;
}

/* Footer */
footer { 
    padding: 50px 0 30px; 
    text-align: center; 
    background: #fdfdfd;
    border-top: 1px solid var(--card-border); 
    color: var(--text-muted); 
}

.wop { 
    margin-top: 10px; 
    font-size: 0.85rem; 
}

.wop a { 
    color: var(--accent); 
    text-decoration: none; 
    font-weight: 600;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-links { display: none; } /* Για απλότητα, μπορείς να προσθέσεις mobile menu αργότερα */
}