/* Basic Reset & Font Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Calibri', 'Arial', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 30px 0;
}

h1, h2, h3 {
    color: #2f5496; /* Blue tone from original styles */
    margin-bottom: 15px;
}

h1 {
    font-size: 2.8em;
    font-weight: bold;
    line-height: 1.2;
}

h2 {
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.6em;
    font-weight: bold;
    color: #1f3763; /* Darker blue from original styles */
}

a {
    color: #0563c1; /* Link color from original styles */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header & Hero Section */
.hero {
    background-color: #e7f0ff; /* Lighter blue background */
    padding: 50px 0;
    text-align: center;
}

.hero h2 {
    font-size: 1.5em;
    color: #555;
    margin-bottom: 25px;
    font-weight: normal;
}

.cta-button {
    display: inline-block;
    background-color: #2f5496; /* Blue */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1f3763; /* Darker Blue */
    text-decoration: none;
}

/* Emoji Styling */
.emoji {
    font-size: 1.5em; /* Make emojis slightly larger */
    margin-right: 10px;
    vertical-align: middle;
}

/* Servizi Section */
.servizi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.servizio-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.servizio-card ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
    margin-top: 15px;
}

.servizio-card li {
    margin-bottom: 8px;
    padding-left: 1.3em;
    position: relative;
}

.servizio-card li::before {
    content: '•'; /* Custom bullet */
    color: #2f5496;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: 0;
    width: 1em;
}

/* Separator */
hr.separator {
    border: none;
    height: 1px;
    background-color: #ddd;
    margin: 40px auto;
    width: 80%;
}

/* Chi Sono Section */
.chi-sono-content {
    text-align: center;
}

.chi-sono-content img {
    border-radius: 50%; /* Make profile picture circular */
    margin-bottom: 20px;
    max-width: 200px; /* Limit image size */
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.chi-sono-content p {
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

blockquote {
    font-style: italic;
    margin: 25px auto;
    padding: 15px 25px;
    border-left: 5px solid #2f5496;
    background-color: #e7f0ff;
    max-width: 600px;
    font-size: 1.1em;
}

/* Contatti Section */
.contatti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    text-align: center;
}

.contatti-grid h3 {
    margin-bottom: 10px;
}

.contatti-grid p {
    margin-bottom: 5px;
}

.contatti-grid a {
    font-weight: bold;
}

/* Footer */
footer {
    background: #dbe4f5; /* Lighter blue tone */
    color: #333;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    font-size: 0.95em;
}

footer p {
    margin-bottom: 10px;
}

.social-links a {
    margin: 0 10px;
    color: #1f3763;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.8em;
    }
    .hero h2 {
        font-size: 1.2em;
    }
    .container {
        width: 95%;
    }
    .servizi-grid,
    .contatti-grid {
        grid-template-columns: 1fr; /* Stack columns */
    }
}

