body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

a {
    color: #005BAA;
    text-decoration: none;
}

header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

nav a {
    margin-left: 1.5rem;
    font-weight: bold;
}

.logo {
    max-height: 60px;
}

.hero {
    position: relative;
    background: url('images/ufficio.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    color: white;
    width: 100%;
}

h1 {
    font-size: 3rem;
    margin: 0.5rem 0;
    color: #FFA500;
}

h2 {
    font-size: 1.5rem;
    color: #ffffff;
}

.cta {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #005BAA;
    color: white;
    font-weight: bold;
    border-radius: 5px;
}

.cta:hover {
    background-color: #003F7D;
}

section {
    padding: 3rem 1rem;
}

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

.about {
    background-color: #f9f9f9;
}

.services {
    background-color: #ffffff;
}

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

.service-box {
    background: #f1f8ff;
    border-left: 5px solid #005BAA;
    padding: 1.5rem;
    border-radius: 8px;
}

footer {
    text-align: center;
    background: #005BAA;
    color: white;
    padding: 1rem;
    margin-top: 2rem;
}
