* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
    color: white;
    height: 10vh;
    min-height: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.logo img {
    height: auto;
    max-height: 8vh;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: #000;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 600px;
    min-width: 1067px;
    /* 600 * 16/9 */
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.hero-text {
    color: white;
    padding: 2rem;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #4CAF50;
}

/* Storia Section */
.storia-section {
    background: #f9f9f9;
}

.storia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.storia-text h3 {
    color: #2E7D32;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.storia-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: justify;
}

.storia-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.storia-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Presente Section */
.presente-section {
    background: white;
}

/* Services Section Extra Styles */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #666;
}

.services-list-container {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.services-list {
    list-style: none;
    line-height: 2;
}

.services-highlight-title {
    text-align: center;
    font-size: 2rem;
    color: #2E7D32;
    margin-bottom: 2rem;
}

.services-highlight-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Reparti Section */
.reparti-section {
    background: #f9f9f9;
}

.reparti-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #666;
}

.reparti-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.reparto-item {
    background: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.reparto-item:hover {
    background: #2E7D32;
    color: white;
    transform: scale(1.05);
}

/* Team Section */
.team-section {
    background: white;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid #4CAF50;
}

.team-member h3 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
    color: white;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-title::after {
    background: white;
}

.testimonials-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card .name {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2E7D32;
}

.testimonial-card .text {
    font-style: italic;
    line-height: 1.8;
    color: #555;
}

.testimonial-card .date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.testimonial-card .verified {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.reviews-loading {
    text-align: center;
    padding: 3rem;
}

.spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 1rem;
    color: white;
}

.rating-summary {
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #333;
    padding: 1rem 2rem;
    margin: 2rem auto;
    text-align: center;
    max-width: max-content;
}

.all-reviews-link-container {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-section .cta-button {
    background-color: white;
    color: #2E7D32;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.testimonials-section .cta-button:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Contact Section */
.contact-section {
    background: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

.contact-phone-link,
.contact-email-link {
    color: #2E7D32;
    text-decoration: none;
}

.whatsapp-booking-title {
    margin-top: 2rem;
}

.whatsapp-cta-icon {
    width: 20px;
    height: 20px;
    fill: white;
    vertical-align: middle;
    margin-right: 8px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-iframe {
    border: 0;
}

/* Footer */
footer {
    background: #2E7D32;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 5px;
}

.copyright a:hover {
    color: white;
    text-decoration: underline;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 122, 82, 0.3);
}

.cta-button:hover {
    background: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 122, 82, 0.4);
}

/* Whatsapp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Loading spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   MODERN ACCORDION STYLES
   ========================================= */
.modern-accordion {
    display: flex;
    gap: 10px;
    height: 600px;
    width: 100%;
    padding: 0 10px;
}

.accordion-card {
    position: relative;
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accordion-card.active {
    flex: 3.5;
    cursor: default;
}

/* Background Image Handling */
.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.accordion-card.active .card-bg-image {
    width: 45%;
    height: 92%;
    top: 4%;
    left: 15px;
    border-radius: 20px;
}

/* Overlay for inactive state */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(76, 175, 80, 0.9), rgba(46, 125, 50, 0.95));
    z-index: 2;
    transition: opacity 0.4s;
}

.accordion-card.active .card-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Collapsed Content (Vertical Text, Icon, Number) */
.collapsed-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    transition: opacity 0.3s;
}

.accordion-card.active .collapsed-content {
    opacity: 0;
    pointer-events: none;
}

.card-icon-circle {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2E7D32;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-vertical-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    font-family: 'Segoe UI', sans-serif;
}

/* Expanded Content (Text on the right) */
.expanded-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    /* Remaining space next to the 45% image */
    height: 100%;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s 0.2s;
    /* Delay to wait for expansion */
}

.accordion-card.active .expanded-content {
    opacity: 1;
    transform: translateX(0);
}

.expanded-content h3 {
    color: #2E7D32;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.expanded-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .modern-accordion {
        flex-direction: column;
        height: auto;
    }

    .accordion-card {
        height: 100px;
        flex: none;
    }

    .accordion-card.active {
        flex: none;
        height: 500px;
    }

    .accordion-card.active .card-bg-image {
        width: 100%;
        height: 40%;
        top: 0;
        left: 0;
        border-radius: 0;
    }

    .expanded-content {
        width: 100%;
        height: 60%;
        top: 40%;
        padding: 1.5rem;
    }

    /* Fix for mobile text visibility */
    .collapsed-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 2rem;
    }

    .card-vertical-title {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: left;
        font-size: 1.2rem;
        width: auto;
        white-space: normal;
    }

    .card-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 600px;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        position: relative;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #4CAF50;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        text-align: center;
        padding: 0;
    }

    nav ul li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav ul li a {
        display: block;
        padding: 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .storia-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .storia-images {
        grid-template-columns: 1fr;
    }

    .storia-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .storia-text p {
        text-align: center;
    }

    /* Fix to remove fallback image on mobile */
    .hero-slider,
    .video-background {
        background-image: none !important;
        background-color: #000 !important;
    }

    .video-background img {
        display: none !important;
    }
}

/* =========================================
   BLOG STYLES
   ========================================= */

.blog-hero {
    background: #e8f5e9;
    padding: 8rem 0 4rem;
    /* More top padding for fixed header */
    text-align: center;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-top: -1rem;
}

.blog-posts-section {
    padding: 4rem 0;
    min-height: 60vh;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f1f1f1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.blog-content h3 {
    color: #2E7D32;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.blog-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: #4CAF50;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    transition: gap 0.3s;
}

.blog-card:hover .read-more {
    gap: 10px;
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 6rem 0 2rem;
    }

    .blog-posts-section {
        padding: 2rem 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        max-width: 90%;
        margin: 0 auto;
    }
}

/* Article Page Styles - Modern Redesign */
/* Article Page Styles - Modern Redesign */
.article-header {
    background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
    padding: 6rem 0;
    /* Standard padding */
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.article-header .section-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.article-header .section-title::after {
    background: rgba(255, 255, 255, 0.4);
    height: 4px;
    width: 80px;
}

.article-meta {
    margin-top: 1rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 20px 6rem;
    /* Standard top padding */
    position: relative;
    z-index: 1;
}

.article-hero-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    /* Increased height */
    object-fit: contain;
    /* Shows full image without cropping */
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    display: block;
    margin-top: 0;
    /* No negative margin */
    position: relative;
    z-index: 10;
    border: none;
    background: #f9f9f9;
    /* Neutral background */
}

.article-body {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    text-align: left;
}

.article-body p {
    margin-bottom: 2rem;
}

/* Typography Enhancements */
.article-body h2 {
    color: #2E7D32;
    margin: 3rem 0 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.article-body h3 {
    color: #388E3C;
    margin: 2.5rem 0 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.article-body ul,
.article-body ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.8rem;
    position: relative;
}

.article-body blockquote {
    border-left: 5px solid #4CAF50;
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f1f8e9;
    font-style: italic;
    font-size: 1.3rem;
    color: #444;
    border-radius: 0 15px 15px 0;
    position: relative;
}

.article-body blockquote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(76, 175, 80, 0.2);
    position: absolute;
    top: -10px;
    left: 10px;
}

.article-body a {
    color: #2E7D32;
    text-decoration: none;
    border-bottom: 2px solid rgba(46, 125, 50, 0.3);
    transition: all 0.3s;
}

.article-body a:hover {
    border-bottom-color: #2E7D32;
    background: rgba(46, 125, 50, 0.1);
}

.article-body img {
    width: 100%;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.back-link-container {
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 3rem;
}

@media (max-width: 768px) {
    .article-header {
        padding: 6rem 0 5rem;
        /* Aumentato padding bottom da 3rem a 5rem */
        clip-path: none;
    }

    .article-header .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .article-hero-image {
        margin-top: 0;
        border-radius: 10px;
        max-height: 300px;
    }

    .article-body {
        font-size: 1.1rem;
    }
}