/* === Reset e base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 16px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Header === */
header {
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2e7d32;
    text-decoration: none;
}

.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-switch a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
}

.lang-switch a.active {
    background: #2e7d32;
    color: white;
    font-weight: 600;
}

.lang-switch a:hover:not(.active) {
    background: #f0f0f0;
}

/* === Hero === */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #1b5e20;
}

/* === Sezioni === */
section {
    padding: 60px 0;
    border-top: 1px solid #eaeaea;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

/* === Come funziona (steps) === */
.steps {
    display: grid;
    gap: 24px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: #2e7d32;
    color: white;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.step-content p {
    color: #555;
}

/* === Cosa NON facciamo === */
.disclaimers {
    background: #fff8e1;
    border-left: 4px solid #f57c00;
    padding: 24px;
    border-radius: 4px;
}

.disclaimers ul {
    list-style: none;
    margin-top: 12px;
}

.disclaimers li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.disclaimers li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: 700;
}

/* === Consolati e servizi === */
.consolates {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
}

.consolate-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    background: #fafafa;
}

.consolate-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2e7d32;
}

.consolate-card ul {
    list-style: none;
}

.consolate-card li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: #444;
}

.consolate-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
}

.contact-note {
    margin-top: 24px;
    padding: 16px;
    background: #e3f2fd;
    border-radius: 6px;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
}

/* === Chi sono === */
.about {
    background: #fafafa;
}

.about p {
    color: #444;
    margin-bottom: 16px;
}

/* === FAQ === */
.faq-item {
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.faq-item p {
    color: #555;
}

/* === Footer === */
footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 40px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #4caf50;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 8px 0;
}

/* === Responsive === */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .consolates {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}