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

:root {
    --primary-pink: #d977a6;
    --dark-pink: #d977a6;
    --light-pink: #f2f2f2;
    --dark-grey: #333333;
    --medium-grey: #666666;
    --light-grey: #f8f8f8;
    --white: #ffffff;
    --text-dark: #222222;
    --text-light: #555555;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 15px;
}

strong,
b {
    font-weight: 600;
}

em,
i {
    font-weight: 600;
    font-style: normal;
}

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

.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-grey);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-grey);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo:hover {
    color: var(--primary-pink);
}

.navbar-logo {
    height: 2.2em;
    width: auto;
    filter: brightness(0);
    order: -1;
}

.navbar-logo-fake {
    height: 2.2em;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-pink);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-grey);
    transition: all 0.3s ease;
}

.hero {
    padding: 50px 0;
    background-color: var(--light-pink);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--primary-pink);
    font-weight: 500;
    margin-bottom: 1rem;
}

.description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 24px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-pink);
    color: var(--white);
    border: 2px solid var(--primary-pink);
}

.btn-primary:hover {
    background-color: var(--dark-pink);
    border-color: var(--dark-pink);
    border-width: 3px;
    padding: 9px 23px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
    background-color: var(--primary-pink);
    color: var(--white);
    border-width: 3px;
    padding: 9px 23px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 2px;
}

.hero-text-with-logo {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-side-logo {
    width: auto;
    height: 5.5em;
    flex-shrink: 0;
}

.hero-text-content {
    flex: 1;
}

.about {
    padding: 50px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.about-item {
    padding: 20px;
    background-color: var(--light-pink);
    border-radius: 2px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.about-item:hover {
    border-color: var(--primary-pink);
    border-width: 3px;
}

.about-item h3 {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 0.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-item h3 i {
    color: var(--primary-pink);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.about-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.services {
    padding: 50px 0;
    background-color: var(--light-grey);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 2px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-width: 4px;
    border-color: var(--primary-pink);
}

.service-icon {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.service-icon i {
    line-height: 1;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.service-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--dark-pink);
}

.approach {
    padding: 50px 0;
    background-color: var(--white);
}

.approach-content h2 {
    font-size: 1.8rem;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.lead {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.approach-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature h4 {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.cta-section {
    padding: 40px 0;
    background-color: var(--primary-pink);
    text-align: center;
}

.cta-section h2 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.cta-section p {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 1.3rem;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-pink);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

footer {
    padding: 40px 0 20px;
    background-color: var(--dark-grey);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    color: var(--primary-pink);
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.page-header {
    padding: 40px 0;
    background-color: var(--light-pink);
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.page-header p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.page-header.diet-header {
    padding: 55px 0;
    background-image: url('k/pattern-diet.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header.medicina-header {
    padding: 60px 0;
    background-color: #fdf2f7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg fill='%23d977a6' fill-opacity='0.15'%3E%3Cpath d='M12 0h18v6h6v6h6v18h-6v6h-6v6H12v-6H6v-6H0V12h6V6h6V0zm12 6h-6v6h-6v6H6v6h6v6h6v6h6v-6h6v-6h6v-6h-6v-6h-6V6zm-6 12h6v6h-6v-6zm24 24h6v6h-6v-6z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.page-header.formazione-header {
    padding: 60px 0;
    background-color: #fdf2f7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='96' viewBox='0 0 60 96'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23d977a6' fill-opacity='0.18'%3E%3Cpath d='M36 10a6 6 0 0 1 12 0v12a6 6 0 0 1-6 6 6 6 0 0 0-6 6 6 6 0 0 1-12 0 6 6 0 0 0-6-6 6 6 0 0 1-6-6V10a6 6 0 1 1 12 0 6 6 0 0 0 12 0zm24 78a6 6 0 0 1-6-6 6 6 0 0 0-6-6 6 6 0 0 1-6-6V58a6 6 0 1 1 12 0 6 6 0 0 0 6 6v24zM0 88V64a6 6 0 0 0 6-6 6 6 0 0 1 12 0v12a6 6 0 0 1-6 6 6 6 0 0 0-6 6 6 6 0 0 1-6 6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header.contatti-header {
    padding: 60px 0;
    background-color: #fdf2f7;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d977a6' fill-opacity='0.12' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}


.content-section {
    padding: 50px 0;
    background-color: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.info-card {
    padding: 20px;
    background-color: var(--light-pink);
    border-radius: 2px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-pink);
    border-width: 3px;
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--primary-pink);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.services-detail {
    padding: 50px 0;
    background-color: var(--light-grey);
}

.service-list {
    display: grid;
    gap: 15px;
}

.service-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background-color: var(--light-pink);
    padding: 20px;
    border-radius: 2px;
    border-left: 3px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-left-width: 6px;
    border-left-color: var(--dark-pink);
    padding-left: 23px;
}

.service-item h3 {
    font-size: 1.05rem;
    color: var(--dark-grey);
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item h3 i {
    color: var(--primary-pink);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.areas-section {
    padding: 50px 0;
    background-color: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.area-card {
    background-color: var(--light-pink);
    padding: 18px;
    border-radius: 2px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.area-card:hover {
    border-color: var(--primary-pink);
    border-width: 3px;
}

.area-card h4 {
    font-size: 1.05rem;
    color: var(--dark-grey);
    margin-bottom: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-card h4 i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.area-card ul {
    list-style: none;
}

.area-card li {
    color: var(--text-light);
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
    font-size: 0.9rem;
}

.area-card li::before {
    content: "•";
    color: var(--primary-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.visit-info {
    padding: 50px 0;
    background-color: var(--light-grey);
}

.visit-content {
    display: grid;
    gap: 20px;
}

.visit-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.visit-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visit-section {
    background-color: var(--white);
    padding: 20px;
    border-radius: 2px;
    border: 2px solid transparent;
    transition: border 0.3s ease;
}

.visit-section:hover {
    border-color: var(--primary-pink);
}

.visit-section h3 {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.visit-section h3 i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.visit-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
}

.visit-section ul {
    list-style: none;
    margin-top: 0.7rem;
}

.visit-section li {
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    line-height: 1.6;
    font-size: 0.9rem;
}

.visit-section li::before {
    content: "✓";
    color: var(--primary-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1800px;
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .visit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.visit-card {
    background-color: var(--white);
    border: 2px solid #ddd;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.visit-card:hover {
    border-width: 4px;
    border-color: var(--primary-pink);
}

.visit-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.visit-card:hover .visit-image img {
    transform: scale(1.05);
}

.visit-content {
    padding: 18px;
}

.visit-card h3 {
    font-size: 1.05rem;
    color: var(--dark-grey);
    margin-bottom: 0.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.visit-card h3 i {
    color: var(--primary-pink);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.visit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.visit-card ul {
    list-style: none;
    margin-top: 0.7rem;
}

.visit-card li {
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    line-height: 1.6;
    font-size: 0.9rem;
}

.visit-card li::before {
    content: "✓";
    color: var(--primary-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.diet-image-section {
    padding: 40px 0;
    background-color: var(--white);
}

.diet-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 3px;
    border: 3px solid var(--primary-pink);
}

.diet-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.diet-image-wrapper img:hover {
    transform: scale(1.02);
}

.faq-section {
    padding: 50px 0;
    background-color: var(--white);
}

.faq-list {
    display: grid;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--light-pink);
    padding: 18px;
    border-radius: 2px;
    border-left: 3px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-left-width: 6px;
    border-left-color: var(--dark-pink);
    padding-left: 21px;
}

.faq-item h3 {
    font-size: 1rem;
    color: var(--dark-grey);
    margin-bottom: 0.6rem;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary-pink);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.treatment-card {
    background-color: var(--white);
    border: 2px solid #ddd;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.treatment-card:hover {
    border-width: 4px;
    border-color: var(--primary-pink);
}

.treatment-card.featured {
    border-color: var(--primary-pink);
}

.treatment-card.featured:hover {
    border-width: 5px;
    border-color: var(--dark-pink);
}

.treatment-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.treatment-card:hover .treatment-image img {
    transform: scale(1.05);
}

.treatment-content {
    padding: 18px;
}

.treatment-card h3 {
    font-size: 1.05rem;
    color: var(--dark-grey);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.treatment-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.intro-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.contact-info {
    padding: 50px 0;
    background-color: var(--white);
}

.contact-main {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--light-pink);
    padding: 25px;
    border-radius: 2px;
}

.contact-card h2 {
    font-size: 1.4rem;
    color: var(--dark-grey);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item svg,
.contact-item i {
    color: var(--primary-pink);
    flex-shrink: 0;
    font-size: 24px;
    width: 24px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--dark-grey);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--dark-grey);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-pink);
}

.locations {
    padding: 50px 0;
    background-color: var(--light-grey);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.location-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 2px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-width: 4px;
    border-color: var(--primary-pink);
}

.location-card.highlight {
    border-color: var(--primary-pink);
    background-color: #fafafa;
}

.location-card.highlight:hover {
    border-width: 5px;
    border-color: var(--dark-pink);
}

.location-card h3 {
    font-size: 1.15rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-details {
    display: grid;
    gap: 12px;
}

.location-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.location-item svg,
.location-item i {
    color: var(--primary-pink);
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    font-size: 18px;
    text-align: center;
}

.location-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.location-item a {
    color: var(--text-light);
    text-decoration: none;
}

.location-item a:hover {
    color: var(--primary-pink);
}

.contact-form-section {
    padding: 50px 0;
    background-color: var(--white);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-pink);
    padding: 25px;
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--dark-grey);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 2px;
    display: none;
    font-size: 0.9rem;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.studio-intro {
    padding: 40px 0;
    background-color: var(--white);
}

.studio-intro h2 {
    font-size: 1.8rem;
    color: var(--dark-grey);
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.studio-images-carousel {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-grey);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--primary-pink);
    color: white;
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-track {
    display: flex;
    gap: 2%;
    transition: transform 0.5s ease;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: var(--primary-pink);
    width: 12px;
    height: 12px;
}

.studio-image-wrapper {
    min-width: 49%;
    max-width: 49%;
    height: 350px;
    overflow: hidden;
    border: 2px solid #ddd;
    transition: border 0.3s ease;
    flex-shrink: 0;
}

.studio-image-wrapper:hover {
    border-width: 4px;
    border-color: var(--primary-pink);
}

.studio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.studio-text {
    max-width: 900px;
    margin: 0 auto 30px;
}

.studio-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.studio-info-box {
    background-color: var(--light-pink);
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    border-left: 3px solid var(--primary-pink);
}

.studio-info-box h3 {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 12px;
    font-weight: 600;
}

.studio-info-box p {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.studio-info-box a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.studio-info-box a:hover {
    color: var(--primary-pink);
}

.orari-section {
    padding: 40px 0;
    background-color: var(--light-grey);
}

.orari-container {
    max-width: 700px;
    margin: 0 auto;
}

.orari-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border: 2px solid #ddd;
    margin-bottom: 15px;
}

.orari-table thead {
    background-color: var(--primary-pink);
    color: var(--white);
}

.orari-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.orari-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.orari-table tbody tr:hover {
    background-color: var(--light-pink);
}

.orari-table tbody tr.weekend {
    background-color: #f8f8f8;
}

.orari-table tbody tr.weekend td {
    color: #999;
}

.orari-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.servizi-studio {
    padding: 40px 0;
    background-color: var(--white);
}

.servizi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.servizio-item {
    background-color: var(--light-pink);
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.servizio-item:hover {
    border-color: var(--primary-pink);
    border-width: 3px;
}

.servizio-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 50%;
    margin-bottom: 15px;
    color: var(--primary-pink);
    transition: all 0.3s ease;
    font-size: 2rem;
}

.servizio-icon i {
    line-height: 1;
}

.servizio-item:hover .servizio-icon {
    background-color: var(--primary-pink);
    color: var(--white);
    transform: scale(1.1);
}

.servizio-item h3 {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 8px;
    font-weight: 600;
}

.servizio-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.location-tagline {
    font-size: 0.9rem;
    color: var(--primary-pink);
    margin: -10px 0 15px 0;
    font-weight: 500;
}

.featured-studio {
    grid-column: span 1;
}

/* Side Logo */
.main-content {
    position: relative;
}

.side-logo {
    position: fixed;
    right: -90px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 300px;
}

.side-logo img {
    width: 100%;
    height: auto;
    opacity: 0.4;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.main-content .container {
    position: relative;
    z-index: 2;
}


@media (max-width: 1200px) {
    .side-logo {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        border-bottom: 1px solid var(--light-grey);
        padding: 1.5rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0.8rem 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text-with-logo {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-side-logo {
        width: 100px;
        height: auto;
    }

    .subtitle {
        font-size: 1.05rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .approach-features {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .contact-form {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .studio-content {
        grid-template-columns: 1fr;
    }

    .service-two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .visit-two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .orari-table {
        font-size: 0.9rem;
    }

    .orari-table th,
    .orari-table td {
        padding: 10px;
    }

    .studio-images-carousel {
        overflow: hidden;
    }

    .carousel-track {
        display: flex;
        gap: 0;
        transition: transform 0.3s ease;
    }

    .studio-image-wrapper {
        min-width: 100%;
        max-width: 100%;
        flex-shrink: 0;
    }

    .carousel-dots {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }
}

.studio-hero {
    width: 100%;
    max-height: 500px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-grey);
}

.studio-hero img {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    display: block;
    object-fit: contain;
}

.formazione-section {
    padding: 50px 0;
    background-color: var(--white);
}

.formazione-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.formazione-intro p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.formazione-timeline {
    max-width: 900px;
    margin: 0 auto 50px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-grey);
}

.timeline-year {
    font-weight: 600;
    color: var(--primary-pink);
    font-size: 0.95rem;
    padding-top: 5px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.certificazioni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.cert-card {
    background-color: var(--light-pink);
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cert-card:hover {
    border-color: var(--primary-pink);
    border-width: 3px;
}

.cert-year {
    display: inline-block;
    background-color: var(--primary-pink);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.cert-card h3 {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 10px;
    font-weight: 600;
}

.cert-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.esperienza-list {
    max-width: 900px;
    margin: 0 auto;
}

.esperienza-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 25px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--light-grey);
    border-left: 3px solid var(--primary-pink);
}

.esp-period {
    font-weight: 600;
    color: var(--primary-pink);
    font-size: 0.9rem;
}

.esp-content h3 {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 8px;
    font-weight: 600;
}

.esp-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Congressi Grid */
.congressi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.congresso-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--light-grey);
    border-radius: 8px;
    border-left: 3px solid var(--primary-pink);
}

.congresso-year {
    font-weight: 600;
    color: var(--primary-pink);
    font-size: 0.9rem;
    min-width: 45px;
}

.congresso-title {
    flex: 1;
    font-size: 0.95rem;
    color: var(--dark-grey);
}

.congresso-location {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Attività Scientifica */
.attivita-scientifica {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.attivita-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-grey);
    border-radius: 12px;
}

.attivita-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.attivita-icon i {
    color: white;
    font-size: 1.2rem;
}

.attivita-content h3 {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 8px;
    font-weight: 600;
}

.attivita-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

.attivita-content em {
    font-style: italic;
    font-weight: 400;
}

@media (max-width: 768px) {
    .studio-hero {
        height: 300px;
        max-height: 300px;
    }

    .studio-hero img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    .timeline-item,
    .esperienza-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .timeline-year,
    .esp-period {
        padding-bottom: 5px;
        border-bottom: 2px solid var(--primary-pink);
    }

    .certificazioni-grid {
        grid-template-columns: 1fr;
    }

    .congressi-grid {
        grid-template-columns: 1fr;
    }

    .congresso-item {
        flex-wrap: wrap;
    }

    .congresso-location {
        width: 100%;
        margin-top: 5px;
    }

    .attivita-item {
        flex-direction: column;
        text-align: center;
    }

    .attivita-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .studio-hero {
        height: 250px;
        max-height: 250px;
    }
}

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: background-color 0.3s ease;
}

.image-modal.active {
    background-color: rgba(0, 0, 0, 0.9);
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.image-modal.active .image-modal-content {
    opacity: 1;
    transform: scale(1);
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    border: 3px solid var(--white);
    cursor: default;
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: color 0.3s ease;
}

.image-modal-close:hover {
    color: var(--primary-pink);
}

@media (max-width: 768px) {
    .image-modal-content {
        max-width: 95%;
        max-height: 95%;
    }

    .image-modal-close {
        top: -35px;
        font-size: 35px;
    }
}

.usercopyall{
    user-select: all;
}