/* Impostazioni di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Arial', sans-serif;
}

/* Hero Section */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

header .btn {
    background-color: #ff914d;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

header .btn:hover {
    background-color: #d76d33;
}

/* Navbar */
nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 10px 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff914d;
}

/* Sections */
.content-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.content-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

/* Features */
.features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: scale(1.05);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

footer a {
    color: #ff914d;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}