/* Info pages styles */

:root {
  --custom-color1: #38475a;
  --custom-color2: #3f3f3f;
}

/* Main title styling */
.chi-siamo .main-title {
    font-size: 2rem;
    line-height: 1.3;
}

/* Section title styling */
.chi-siamo .section-title {
    font-size: 1.75rem;
    line-height: 1.3;
    border-top-color: #e0e0e0 !important;
}

/* Intro text with custom color */
.chi-siamo .intro-text {
    font-weight: 700;
    line-height: 1.7;
    color: var(--custom-color1);
}

/* Description text with custom color */
.chi-siamo .description-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--custom-color2);
}

/* Link styling */
.chi-siamo .link-underlined {
    color: var(--custom-color1);
}

.chi-siamo .link-underlined:hover {
    color: #2a3443;
}

/* List bullet points */
.chi-siamo .features-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--custom-color2);
}

.chi-siamo .features-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--custom-color2);
    font-weight: bold;
}