/* Palette Colori Werent Group */
:root {
    --primary-blue: #003366; /* Blu istituzionale */
    --accent-orange: #f37021; /* Arancio Summer School / Werent accent */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f4f7f9;
    --white: #ffffff;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

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

/* Navigazione */
nav {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
nav img { height: 60px; }
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li a { 
    text-decoration: none; 
    color: var(--primary-blue); 
    font-weight: 600; 
    margin-left: 25px;
    font-size: 0.9rem;
}
.nav-btn {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
}

/* Hero Section */
.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-content { max-width: 700px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero .lead { font-size: 1.5rem; color: var(--accent-orange); font-weight: 600; }

/* Pulsanti */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary { background: var(--primary-blue); color: var(--white); }
.btn-accent { background: var(--accent-orange); color: var(--white); margin-left: 10px; }

/* Sezioni */
.section { padding: 80px 0; }
.section-dark { background: var(--primary-blue); color: var(--white); }
.section-light { background: var(--bg-light); }
.section-title { margin-bottom: 40px; font-size: 2rem; color: var(--primary-blue); }
.white { color: var(--white); }

/* Liste stile Werent */
.werent-list { list-style: none; margin: 20px 0; }
.werent-list li::before {
    content: "✓";
    color: var(--accent-orange);
    font-weight: bold;
    margin-right: 10px;
}

/* Griglie */
.flex-row { display: flex; gap: 50px; align-items: center; }
.flex-text, .flex-img { flex: 1; }
.img-responsive { width: 100%; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; 
    margin: 40px 0;
}
.feature-card { background: rgba(255,255,255,0.1); padding: 20px; border-left: 4px solid var(--accent-orange); }

.prof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.prof-item { background: var(--white); padding: 30px; border-radius: 8px; text-align: center; border-bottom: 5px solid var(--bg-light); }
.prof-item:hover { border-color: var(--accent-orange); }
.prof-icon { font-size: 3rem; margin-bottom: 15px; }

/* FAQ */
details { background: var(--white); margin-bottom: 10px; padding: 15px; border-radius: 5px; }
summary { font-weight: 700; cursor: pointer; color: var(--primary-blue); }

/* Form */
.form-grid { display: flex; gap: 40px; flex-wrap: wrap; }
.form-container { flex: 1; min-width: 300px; background: var(--bg-light); padding: 40px; border-radius: 8px; }
.highlight-form { background: var(--primary-blue); color: var(--white); }
input, select, textarea { width: 100%; padding: 12px; margin: 10px 0; border: 1px solid #ddd; border-radius: 4px; }

footer { background: #001a33; color: var(--white); padding: 60px 0; text-align: center; }
.footer-logo img { height: 50px; margin-bottom: 10px; }
.cta-final { font-weight: 700; color: var(--accent-orange); font-size: 1.2rem; margin-top: 15px; }