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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffeedd; /* #ffeedd */
    /* A very light, warm beige */
}

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

a {
    text-decoration: none;
    color: #6d597a; /* 6d597a */
    /* A muted teal, adjust as needed */
}

h1,
h2,
h3 {
    margin-bottom: 0.8em;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header & Navigation */
.site-header {
    background-color: #ffeedd;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    /* Makes header stick on scroll */
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.logo a {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2em;
    color: #4a4a4a;
    font-weight: normal;
}

.logo a:hover {
    color: #6d597a;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    font-family: 'Great Vibes', cursive;
    /* Apply the logo font */
    font-size: 1.4em;
    /* You'll likely need to adjust the font-size */
    color: #555;
    padding-bottom: 5px;
    /* You might need to adjust padding too */
    .contact-right {
         padding-top: 50px; /* Increased top padding for vertical alignment */
    }
    position: relative;
    font-weight: normal;
    /* Great Vibes is often thin, ensure it's not bolded by default */
    /* Consider line-height or letter-spacing if needed for readability */
    /* letter-spacing: 1px; */
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #6d597a;
    font-weight: bold;
}

.main-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6d597a;
}


.contact-info-header {
    font-size: 0.85em;
    text-align: right;
    color: #666;
}

.contact-info-header p {
    margin-bottom: 3px;
}

.contact-info-header span {
    color: #6d597a;
    margin-right: 5px;
}

.mobile-menu-toggle {
    display: none;
    /* Hidden by default, shown on mobile */
    font-size: 1.8em;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
}


/* Hero Section (Landing Page) */
#hero {
    background-image: url('../images/leaf-pattern2.jpg');
    /* CHANGE THIS PATH */
    background-size: cover;
    background-position: center center;
    height: calc(100vh - 75px);
    /* Adjust 75px based on your header height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffeedd;
    position: relative;
    /* For pseudo-element overlay */
}

#hero::before {
    /* Dark overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Adjust opacity as needed */
}

.hero-content {
    position: relative;
    /* To be on top of the overlay */
    z-index: 1;
    max-width: 700px;
}

.hero-content h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5em;
    /* Larger for hero */
    font-weight: normal;
    margin-bottom: 0.1em;
    color: #ffeedd;
    /* Ensure high contrast */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 1.5em;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5em;
    color: #ffeedd;
    /* Lighter than main text */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    /* Pill shape */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #6d597a;
    /* Muted teal/green from image button */
    color: #fff;
}

.btn-primary:hover {
    background-color: #3e2a4b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #d3c2b0;
    /* Beige button from "Curriculum Vitae" */
    color: #4f463e;
}

.btn-secondary:hover {
    background-color: #c5b3a1;
    transform: translateY(-2px);
}


.page-banner {
    background-size: cover;
    /* Or 'contain' or 'auto' depending on the pattern image */
    background-position: center center;
    background-repeat: repeat;
    /* If it's a tileable pattern */
    /* If it's a single large image meant to cover, use: background-repeat: no-repeat; */
    color: #ffeedd;
    /* Text color - ensure good contrast with the new background */
    padding: 80px 0;
    /* Adjust padding as needed for height */
    text-align: center;
    /* Basic horizontal centering for inline/inline-block children */
    position: relative;
    display: flex;
    /* Use flexbox to center content vertically */
    align-items: center;
    /* Vertically center items */
    justify-content: center;
    /* Horizontally center items (if .container is not taking full width) */
    min-height: 250px;
    /* Example: give the banner a minimum height */
}

.page-banner .container.page-banner-content {
    position: relative;
    /* To ensure it's above the ::before pseudo-element */
    z-index: 1;
    width: 100%;
    /* Make container take full width of banner for true centering */
    max-width: 1100px;
    /* But still respect the overall site max-width if desired */
    text-align: center;
    /* Ensure text within is centered */
}


.page-banner h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 4em;
    /* Adjust size as needed */
    font-weight: normal;
    color: #ffeedd;
    /* Ensure this contrasts well with your leaf pattern */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    /* Optional: for better readability */
    margin: 0;
    /* Remove default margins */
}

.page-banner::before {
    /* Dark overlay for better text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 42, 42, 0.4);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5em;
    font-weight: normal;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Chi Sono Page Content */
#chi-sono-content {
    padding: 50px 0;
}

.chi-sono-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.chi-sono-image {
    justify-self: center;
}

.chi-sono-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
}

.chi-sono-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5em;
    color: #333;
    font-weight: normal;
    text-align: left;
    margin-bottom: 10px;
}

.chi-sono-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.chi-sono-text h3 {
    font-size: 1.3em;
    color: #555;
    font-weight: 300;
    margin-bottom: 1.5em;
}

.chi-sono-text p {
    margin-bottom: 1.2em;
    color: #555;
    font-size: 1.05em;
}

/* Footer */
.site-footer-bottom {
    background-color: #6d597a;
    color: #040202;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    margin-top: 40px;
}

/* Footer-specific link color: keep privacy link (and other footer links) black
   so they don't inherit the site-wide link color used elsewhere (e.g., banner) */
.site-footer-bottom a,
footer a {
    color: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
        /* Allow items to wrap */
    }

    .main-nav {
        width: 100%;
        order: 3;
        /* Move nav below logo and contact on wrap */
        max-height: 0;
        /* Hidden by default */
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .main-nav.active {
        /* JS will toggle this class */
        max-height: 300px;
        /* Adjust as needed */
        margin-top: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav ul li {
        margin: 10px 0;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
        /* Position toggle next to logo or contact */
    }

    .contact-info-header {
        order: 1;
        /* Adjust order as needed */
        text-align: left;
        margin-bottom: 10px;
        /* Space when wrapped */
    }

    .logo {
        width: calc(100% - 50px);
        /* Adjust if contact info is beside it */
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .hero-content h2 {
        font-size: 1.2em;
    }

    .chi-sono-grid {
        grid-template-columns: 1fr;
        /* Stack columns on smaller screens */
    }

    .chi-sono-image {
        text-align: center;
        margin-bottom: 30px;
    }

    .chi-sono-image img {
        max-width: 300px;
        /* Adjust for smaller screens */
    }
}

@media (max-width: 768px) {
    .contact-info-header {
        display: none;
        /* Optionally hide header contact on very small screens if space is an issue */
    }

    #hero {
        height: calc(100vh - 60px);
        /* Adjust for smaller header */
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content h2 {
        font-size: 1em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-banner h1 {
        font-size: 2.8em;
    }
}

/* About Me Section on Homepage */
#about-me-home {
    padding: 70px 0;
    /* background-color: #f5f0f7; */
}

.about-me-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-me-left h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2em;
    margin-bottom: 10px;
    color: #404040;
    font-weight: normal;
}

.about-subtitle {
    color: #6d597a;
    font-size: 1.15em;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-me-left p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0 45px;
    flex-wrap: wrap;
}

.credentials-box {
    background: #fff;
    border-left: 4px solid #6d597a;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.credentials-box p {
    margin: 0;
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.value-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #d8e5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5em;
    color: #6d597a;
}

.value-card h3 {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0;
}

.testimonial-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e8e0f0;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05em;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #6d597a;
    font-size: 0.95em;
    font-weight: 600;
    margin: 0;
}

/* Responsive for About Me */
@media (max-width: 992px) {
    .about-me-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-me-left h2,
    .section-title h2,
    .pricing-title,
    .scrivimi-section h2 {
        font-size: 2.2em;
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .about-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* Servizi Section on Homepage */
#servizi-home {
    padding: 70px 0;
    /* Increased padding */
    text-align: center;
    background-color: #ffeedd;
    /* White background for this section */
    border-top: 1px solid #eee;
    /* Subtle separator */
    border-bottom: 1px solid #eee;
    /* Subtle separator */
}

.section-title {
    margin-bottom: 25px;
}

.section-title h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2em;
    color: #404040;
    /* Dark grey for the title */
    margin-bottom: 10px;
    font-weight: normal;
}

.title-underline {
    width: 120px;
    height: 2px;
    /* Thinner underline */
    background-color: #d0cce0;
    /* Light lavender/blue from image */
    margin: 0 auto 30px auto;
    /* Center the underline */
}

.servizi-subtitles {
    margin-bottom: 50px;
    color: #5c5c5c;
    /* Dark grey for serif text */
    font-family: Georgia, 'Times New Roman', Times, serif;
    /* Serif font */
    font-size: 1.15em;
    /* Slightly larger */
    line-height: 1.7;
}

.servizi-subtitles p {
    margin-bottom: 0.4em;
}

.servizi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Increased gap */
    text-align: left;
    max-width: 1100px;
    /* Align with container max-width */
    margin: 0 auto;
    /* Center grid if container padding is on #servizi-home */
}

.servizi-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servizi-column ul li {
    margin-bottom: 15px;
    /* Increased spacing */
    color: #6a608d;
    /* Muted purple-grey for text */
    font-family: Georgia, 'Times New Roman', Times, serif;
    /* Serif font */
    font-size: 1.05em;
    /* Slightly larger for readability */
    display: flex;
    align-items: flex-start;
}

.servizi-column .checkmark {
    color: #6a608d;
    /* Muted purple-grey for checkmark */
    margin-right: 12px;
    /* More space after checkmark */
    font-weight: normal;
    /* Unicode checkmark is often bold enough */
    font-size: 1.2em;
    /* Make checkmark slightly larger */
    line-height: 1.3;
    /* Adjust vertical alignment */
}

.btn-servizi-more {
    display: inline-block;
    background-color: #6d597a;
    /* Lavender button background from image */
    color: #f8f8f8;
    /* Off-white text */
    padding: 10px 28px;
    /* Adjusted padding */
    font-family: 'Great Vibes', cursive;
    font-size: 1.4em;
    border-radius: 4px;
    /* Slightly rounded */
    text-decoration: none;
    margin-top: 25px;
    /* More space above button */
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    /* Ensure no default border */
    cursor: pointer;
}

.btn-servizi-more:hover {
    background-color: #968bb8;
    /* Darker lavender on hover */
    transform: translateY(-1px);
}


/* Responsive adjustments for Servizi section */
@media (max-width: 992px) {
    #servizi-home {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 2.8em;
    }

    .servizi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
        /* Add padding to grid container on smaller screens */
    }

    .servizi-column:last-child {
        /* If you want the last column to span full width if it's the only one in a row */
        grid-column: 1 / -1;
        /* Or handle as needed if items aren't perfectly divisible by 2 */
    }
}

@media (max-width: 768px) {
    #servizi-home {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 2.2em;
    }

    .title-underline {
        width: 100px;
        margin-bottom: 20px;
    }

    .servizi-subtitles {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .servizi-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        gap: 0;
        /* Remove gap for single column, margin on columns instead */
        padding: 0 20px;
        /* Add padding to grid container on smaller screens */

    }

    .servizi-column {
        margin-bottom: 30px;
    }

    .servizi-column:last-child {
        margin-bottom: 0;
    }

    .btn-servizi-more {
        width: auto;
        /* Don't make button full width unless desired */
        padding: 10px 25px;
        font-size: 1.3em;
        /* If you want it centered in its column:
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 280px; // Or desired width
        */
    }
}

/* Make sure .container has padding if #servizi-home has 0 padding for its children */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    /* padding: 0 15px; /* Add padding here if section elements don't have their own */
}

#servizi-home>.container {
    /* Ensure container inside #servizi-home uses full width if section has padding */
    width: 100%;
    padding: 0 15px;
    /* Add side padding to the container within this section */
}

[data-aos] {
    opacity: 0;
    /* Initially hide elements that will be animated by AOS */
    /* AOS will set opacity to 1 when animated */
}

body.aos-animate [data-aos] {
    opacity: 1 !important;
    /* Ensure visibility once AOS is active and animates */
}



/* Contact Page Specific Styles */
#contact-content {
    padding: 50px 0;
    text-align: center;
    background-color: #ffeedd;
    /* Match the main background color from image */
}

/* Re-using .section-title for "Contattami" h1 */
#contact-content .section-title h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2em;
    /* Adjust as needed */
    color: #404040;
    margin-bottom: 10px;
    font-weight: normal;
}

/* Re-using .title-underline */
#contact-content .title-underline {
    width: 120px;
    height: 2px;
    background-color: #d0cce0;
    /* Light lavender/blue */
    margin: 0 auto 30px auto;
}

.contact-intro-text {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.15em;
    color: #5c5c5c;
    line-height: 1.7;
    max-width: 700px;
    /* Constrain width for readability */
    margin: 0 auto 50px auto;
}

.contact-intro-text p {
    margin-bottom: 0.8em;
}

/* Two-column layout for contact page: form left, info cards right */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    align-items: start;
    margin-top: 20px;
}

.contact-right .contact-card {
    background: #f9e5d1;
    border-radius: 12px;
    padding: 20px;
    box-shadow: none;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* push right column content down to align with the form which has margin-top:50px */
.contact-right {
    padding-top: 50px;
}

.contact-card .icon-circle {
    min-width: 60px;
    width: 60px;
    height: 60px;
    background: #c49dde52;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #6d597a;
}

.contact-card .card-content {
    flex: 1;
}

.contact-card h4 {
    margin: 0 0 4px 0;
    font-size: 1.1em;
    color: #000;
    font-weight: 600;
}

.contact-card p {
    margin: 4px 0;
    font-size: 1.05em;
    color: #000;
    font-weight: 500;
}

.contact-right .muted {
    color: #888;
    font-size: 0.9em;
    margin: 4px 0 0 0;
    font-weight: 400;
}

.crisis-card {
    background: #ff070740;
    border: 1px solid #e8d8d8;
    border-radius: 12px;
    display: block;
    padding: 24px;
    margin-bottom: 14px;
}

.crisis-card h4 {
    margin: 0 0 12px 0;
    font-size: 1.3em;
    color: #000;
    font-weight: 600;
}

.crisis-card .crisis-intro {
    color: #6b7280;
    font-size: 0.95em;
    margin: 0 0 16px 0;
    font-weight: 400;
    line-height: 1.6;
}

.crisis-card .crisis-item {
    margin: 10px 0;
    font-size: 1em;
    color: #000;
    line-height: 1.6;
}

.crisis-card .crisis-item strong {
    font-weight: 700;
    display: inline;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-right {
        order: 2;
    }
}

.scrivimi-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2a8a8;
    /* Optional: subtle separator */
}

.scrivimi-section h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2em;
    color: #404040;
    margin-bottom: 30px;
    font-weight: normal;
}

.social-icons {
    margin-bottom: 30px;
}

.social-icons a {
    display: inline-block;
    font-size: 1.3em;
    /* Size of the icon container */
    color: #777;
    /* Icon color */
    background-color: #fff;
    /* Background of the square */
    border: 1px solid #ddd;
    /* Border of the square */
    width: 45px;
    /* Width of the square */
    height: 45px;
    /* Height of the square */
    line-height: 45px;
    /* Vertically center icon */
    text-align: center;
    border-radius: 4px;
    /* Slightly rounded corners */
    margin: 0 8px;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
    background-color: #a79cc9;
    /* Lavender color from other button */
    border-color: #a79cc9;
}

/* Ensure image icons inside social buttons fit and are vertically centered */
.social-icons a img {
    max-width: 65%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.contact-details {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.1em;
    color: #5c5c5c;
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 12px;
}

.contact-details p i {
    /* Style for icons next to contact details */
    margin-right: 10px;
    color: #8a7e70;
    /* Muted brown/gold icon color */
    width: 20px;
    /* Ensure consistent spacing */
    text-align: center;
}

.contact-details p a {
    color: #5c5c5c;
    /* Ensure links match paragraph text color */
    text-decoration: none;
}

.contact-details p a:hover {
    color: #6d597a;
    /* Your site's accent color */
    text-decoration: underline;
}


/* Ensure page banner styling is consistent or adjustable */
.page-banner {
    background-size: cover;
    background-position: center;
    color: #fff;
    /* Default, might be overridden if text is used */
    /* padding: 60px 0; Remove default padding if handled inline or specifically */
    text-align: center;
    position: relative;
}

.page-banner::before {
    /* Dark overlay for image banners */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.4); Only apply if an image is used */
}

/* If using solid color for banner, you might not need the ::before overlay,
   or you'd adjust its opacity/color.
   The HTML has style="background-color: #e0e7ea; padding: 60px 0;"
   which overrides this default for the contact page banner.
*/


/* Responsive adjustments for Contact page */
@media (max-width: 768px) {
    #contact-content .section-title h1 {
        font-size: 2.6em;
    }

    .contact-intro-text {
        font-size: 1.1em;
        padding: 0 15px;
        /* Add padding on smaller screens */
    }

    .scrivimi-section h2 {
        font-size: 1.8em;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.2em;
        margin: 0 5px 10px 5px;
        /* Add bottom margin for wrapping */
    }

    .contact-details {
        font-size: 1em;
    }
}

#a-chi-mi-rivolgo-title-section {
    padding: 50px 0 30px;
    /* Adjust padding as needed */
    text-align: center;
    background-color: #ffeedd;
    /* Match body background */
}

/* Re-using .section-title for "A chi mi rivolgo" h1 */
#a-chi-mi-rivolgo-title-section .section-title h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2em;
    color: #404040;
    margin-bottom: 10px;
    font-weight: normal;
}

/* Re-using .title-underline */
#a-chi-mi-rivolgo-title-section .title-underline {
    width: 120px;
    height: 2px;
    background-color: #d0cce0;
    /* Light lavender/blue */
    margin: 0 auto 0px auto;
    /* Reduced bottom margin */
}

.rivolgo-sections-container {
    background-color: #ffeedd;
    /* Very light textured beige from image */
    /* If you have a subtle texture image:
    background-image: url('../img/subtle-texture.png');
    background-repeat: repeat; */
    padding: 40px 0;
    border-top: 1px solid #e8e5e1;
    border-bottom: 1px solid #e8e5e1;
}

.rivolgo-section {
    margin-bottom: 50px;
    /* Space between each group section */
}

.rivolgo-section:last-child {
    margin-bottom: 0;
}

.rivolgo-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two equal columns */
    gap: 40px;
    /* Space between text and image */
    align-items: center;
    /* Vertically align items in the center */
    background-color: #ffffff;
    /* White background for the card-like effect if container has texture */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}

/* For alternating layout: image on left, text on right */
.rivolgo-section-inner.rivolgo-section-reverse .rivolgo-text {
    order: 2;
}

.rivolgo-section-inner.rivolgo-section-reverse .rivolgo-image {
    order: 1;
}

.rivolgo-text h2 {
    font-family: 'Great Vibes', cursive;
    /* Apply the Great Vibes font */
    font-size: 2em;
    /* You WILL need to adjust this size significantly */
    color: #4a4a4a;
    /* Or #404040 to match the main "Contattami" title */
    margin-bottom: 30px;
    font-weight: normal;
    /* Important for script fonts */
    /* letter-spacing: 0.5px; /* Optional: adjust if needed for readability */
}

.rivolgo-title-underline {
    /* Specific underline for these subheadings */
    width: 80px;
    height: 1.5px;
    background-color: #d0cce0;
    /* Light lavender/blue */
    margin-bottom: 25px;
}

/* New card-like layout for "A chi mi rivolgo" to match the provided design
   while preserving site colors and fonts. Left column = content; right = issues panel */
.rivolgo-card {
    display: flex;
    gap: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 30px;
}

.rivolgo-card .card-left {
    padding: 32px;
    flex: 1;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6d597a;
    font-size: 20px;
}

.rivolgo-card .card-left h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2em;
    margin: 0;
    color: #4a4a4a;
}

.pill-list {
    margin-top: 16px;
}

.pill {
    display: inline-block;
    background-color: #e6eef3;
    color: #4a6a7a;
    padding: 6px 10px;
    border-radius: 999px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.85em;
}

.btn-servizi-more {
    display: inline-block;
    margin-top: 14px;
    background-color: #6d597a;
    color: #f8f8f8;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    /* Use the same (readable) font as the surrounding box */
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95em;
}

.card-right {
    width: 360px;
    background-color: #f9e5d1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-right h3 {
    margin-top: 0;
    font-size: 1.15em;
    color: #2f2f2f;
    margin-bottom: 12px;
}

.issues-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #4a4a4a;
}

.issues-list li {
    margin-bottom: 10px;
    padding-left: 0;
}

/* Removed green checkmarks per request */
.issues-list li::before {
    content: none;
}

@media (max-width: 992px) {
    .rivolgo-card {
        flex-direction: column;
    }

    .card-right {
        width: 100%;
        padding: 20px;
    }

    .rivolgo-card .card-left {
        padding: 24px;
    }
}

/* Pricing & What to Expect styles */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: start;
    margin-top: 24px;
}

.pricing-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2em;
    color: #404040;
    margin-bottom: 14px;
    font-weight: normal;
}

.price-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 20px;
    margin-bottom: 14px;
    text-align: left;
}

.price-card-left {
    flex: 1;
    text-align: left;
}

.price-card-left h4 {
    margin: 0 0 6px 0;
    font-size: 1.05em;
    color: #333;
    font-weight: 600;
}

.muted {
    color: #6a6a6a;
    font-size: 0.95em;
    margin: 0;
    line-height: 1.5;
}

.price-card-right {
    color: #6d597a;
    font-weight: 700;
    font-size: 1.4em;
    margin-left: 20px;
    flex-shrink: 0;
    align-self: center;
}

.payment-box {
    background: #eef2f5;
    border: 1px solid rgba(108,108,108,0.08);
    padding: 18px;
    border-radius: 8px;
    margin-top: 12px;
    text-align: left;
}

.payment-box h4 {
    margin: 0 0 8px 0;
    font-size: 1em;
    font-weight: 600;
    text-align: left;
}

.payment-box ul {
    text-align: left;
    padding-left: 18px;
}

.pricing-right .expect-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    margin-bottom: 14px;
    text-align: left;
}

.expect-card h4 {
    text-align: left;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.expect-card .muted {
    text-align: left;
}

.full-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-right {
        order: 2;
    }
}

.rivolgo-text p {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.1em;
    color: #5c5c5c;
    line-height: 1.7;
    margin-bottom: 1em;
}

.rivolgo-text p strong {
    font-weight: bold;
    /* Or 600 if Lato has it */
    color: #333;
}

.rivolgo-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* Rounded corners for the image */
    display: block;
}

/* Responsive adjustments for A Chi Mi Rivolgo page */
@media (max-width: 992px) {
    .rivolgo-section-inner {
        grid-template-columns: 1fr;
        /* Stack text and image */
        gap: 30px;
    }

    .rivolgo-section-inner.rivolgo-section-reverse .rivolgo-text,
    .rivolgo-section-inner.rivolgo-section-reverse .rivolgo-image {
        order: initial;
        /* Reset order for stacking */
    }

    .rivolgo-text {
        text-align: center;
        /* Center text when stacked */
    }

    .rivolgo-title-underline {
        margin-left: auto;
        margin-right: auto;
    }

    .rivolgo-image {
        max-width: 450px;
        /* Constrain image width when stacked */
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #a-chi-mi-rivolgo-title-section .section-title h1 {
        font-size: 2.8em;
    }

    .rivolgo-text h2 {
        font-size: 2em;
    }

    .rivolgo-text p {
        font-size: 1.05em;
    }

    .rivolgo-section-inner {
        padding: 20px;
    }
}


.contact-form-container {
    /* Keep or adjust as needed */
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 40px;
    /* Increased padding for more space */
    background-color: #f9e5d1;
    /* Light beige background for the whole form area as per image */
    border-radius: 12px;
    /* Slightly more rounded for the container */
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    max-width: 600px;
    /* Slightly narrower if preferred */
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container h3 {
    /* If you have a title above the form */
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.6em;
    color: #4a4a4a;
    margin-bottom: 30px;
    /* More space before form fields */
    text-align: center;
}


#contact-form .form-group {
    margin-bottom: 25px;
    /* Increased spacing between form groups */
    text-align: left;
}

#contact-form .form-group label {
    display: block;
    font-family: 'Lato', sans-serif;
    /* Or your preferred sans-serif */
    font-weight: 600;
    /* Slightly bolder */
    color: #333;
    /* Darker label color */
    margin-bottom: 10px;
    /* More space between label and input */
    font-size: 0.9em;
    /* Slightly smaller label */
}

#contact-form .required-asterisk {
    color: #e74c3c;
    /* Red color for asterisk */
    margin-left: 2px;
}

#contact-form .form-group input[type="text"],
#contact-form .form-group input[type="email"],
#contact-form .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    /* More padding inside input */
    background-color: #ffffff;
    /* Light grey background for inputs */
    border: 1px solid transparent;
    /* Transparent border initially */
    border-radius: 25px;
    /* Pill shape */
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.5;
    /* For better text vertical alignment in inputs */
}

/* Remove default browser appearance for textarea resize handle in some browsers */
#contact-form .form-group textarea {
    resize: none;
    /* Disable manual resizing by user */
    min-height: 120px;
    /* Adjust as needed */
}

#contact-form .form-group input[type="text"]:focus,
#contact-form .form-group input[type="email"]:focus,
#contact-form .form-group textarea:focus {
    border-color: #6d597a;
    /* Blue border on focus */
    background-color: #fff;
    /* White background on focus */
    outline: none;
    box-shadow: none;
    /* No shadow */
}

/* Placeholder text style */
#contact-form .form-group input::placeholder,
#contact-form .form-group textarea::placeholder {
    color: #999;
    opacity: 1;
    /* Firefox */
}

/* Privacy policy link under the submit button */
#contact-form .form-privacy-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.85em;
    color: #777;
    line-height: 1.5;
    margin-top: 15px;
    text-align: center;
}

#contact-form .form-privacy-link a {
    color: #6d597a;
    text-decoration: underline;
}


/* Submit Button specific styling */
.form-group.form-group-submit {
    /* For centering the button */
    /* text-align: center;  <-- Not needed if button is block */
    margin-top: 30px;
    /* More space above button */
}

.btn-submit-modern {
    display: block;
    width: fit-content;
    /* Full width for modern button */
    margin-left: auto;
    margin-right: auto;
    background-color: #6d597a;
    /* Blue button background */
    color: #fff;
    padding: 14px 40px;
    /* Generous padding */
    border: none;
    border-radius: 25px;
    /* Pill shape */
    font-family: 'Lato', sans-serif;
    /* Or your preferred sans-serif */
    font-weight: bold;
    text-transform: uppercase;
    /* If desired, or remove for sentence case */
    letter-spacing: 0.5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 0px 0px rgba(74, 128, 245, 0.3);
    /* Subtle shadow for button */
}

.btn-submit-modern:hover,
.btn-submit-modern:focus {
    background-color: #6d597a;
    /* Darker blue on hover/focus */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(74, 128, 245, 0.4);
    outline: none;
}

/* Google Maps consent placeholder */
.map-consent-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background-color: #f9e5d1;
    padding: 30px 20px;
    box-sizing: border-box;
}

.map-consent-content {
    max-width: 520px;
    text-align: center;
}

.map-consent-icon {
    font-size: 3em;
    color: #6d597a;
    margin-bottom: 15px;
}

.map-consent-text {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.map-consent-button {
    display: inline-block;
    width: auto;
}

/* Philosophy & Approach Section */
.philosophy-section {
    margin: 60px 0;
    padding: 40px 0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.philosophy-left h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
    font-weight: normal;
}

.philosophy-left p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-left h3 {
    font-size: 1.1em;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.philosophy-left ul {
    list-style: none;
    padding: 0;
}

.philosophy-left ul li {
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.philosophy-left ul li:before {
    content: "•";
    color: #6d597a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.quote-box {
    background: #f0e8f5;
    border-radius: 12px;
    padding: 35px;
    position: sticky;
    top: 100px;
}

.quote-text {
    font-style: italic;
    font-size: 1.15em;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
}

.quote-author {
    font-size: 0.95em;
    color: #6d597a;
    margin-bottom: 20px;
    font-weight: 600;
}

.quote-explanation {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

/* Combined Professional Section */
.profession-section {
    margin: 60px 0;
    padding: 50px 0;
    background: #f9f5f0;
    border-radius: 12px;
}

.profession-section .section-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-weight: normal;
}

.profession-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.profession-experience {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.profession-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profession-education,
.profession-certs {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Card Header (shared for profession cards) */
.profession-experience .card-header,
.profession-education .card-header,
.profession-certs .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.profession-experience .card-header i,
.profession-education .card-header i,
.profession-certs .card-header i {
    font-size: 1.5em;
    color: #6d597a;
}

.profession-experience .card-header h3,
.profession-education .card-header h3,
.profession-certs .card-header h3 {
    font-size: 1.2em;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* Experience timeline inside profession section */
.profession-experience .experience-timeline {
    max-width: 100%;
    padding: 0;
}

.profession-experience .experience-item {
    background: transparent;
    box-shadow: none;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    margin-bottom: 0;
}

.profession-experience .experience-item:last-child {
    border-bottom: none;
}

.profession-experience .experience-item:hover {
    transform: none;
    box-shadow: none;
}

/* Education items inside profession section */
.profession-education .education-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.profession-education .education-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .profession-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .profession-section .section-title {
        font-size: 2em;
    }
}

/* Education item base styles */
.education-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.education-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.education-item h4 {
    font-size: 1.05em;
    color: #000;
    margin-bottom: 6px;
    font-weight: 600;
}

.education-item .institution {
    color: #6d597a;
    font-size: 0.95em;
    margin: 4px 0;
    font-weight: 500;
}

.education-item .year-detail {
    color: #888;
    font-size: 0.9em;
    margin: 4px 0;
}

/* Certifications base styles */
.certifications-list {
    list-style: none;
    padding: 0;
}

.certifications-list li {
    color: #333;
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.certifications-list li:last-child {
    border-bottom: none;
}

.certifications-list li:before {
    content: "●";
    color: #6d597a;
    position: absolute;
    left: 0;
    font-size: 0.8em;
}

/* Experience timeline base styles */
.experience-timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.experience-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.experience-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 20px;
}

.experience-title-group h3 {
    font-size: 1.2em;
    color: #000;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.experience-org {
    color: #6d597a;
    font-size: 1em;
    margin: 0;
    font-weight: 500;
}

.experience-years {
    background: #e8e0f0;
    color: #6d597a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    white-space: nowrap;
}

.experience-description {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Philosophy responsive */
@media (max-width: 992px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quote-box {
        position: static;
    }
}

@media (max-width: 768px) {
    .philosophy-left h2 {
        font-size: 2em;
    }
    
    .experience-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .experience-years {
        align-self: flex-start;
    }
}

/* Resources Page Styles */
.page-banner .banner-subtitle {
    font-size: 1.15em;
    color: #fff;
    max-width: 700px;
    margin: 15px auto 25px;
    line-height: 1.7;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-banner .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #6d597a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #5d4969;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 89, 122, 0.3);
}

.btn-secondary-outline {
    background-color: transparent;
    color: #6d597a;
    padding: 14px 32px;
    border: 2px solid #6d597a;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary-outline:hover {
    background-color: #6d597a;
    color: #fff;
}

/* Crisis Support Section */
.crisis-support-section {
    padding: 70px 0;
    background: #fff5f5;
}

.crisis-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.crisis-header i {
    color: #dc2626;
    font-size: 2em;
}

.crisis-header h2 {
    font-size: 2.2em;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.crisis-intro-text {
    text-align: center;
    color: #666;
    font-size: 1.05em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.crisis-resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.crisis-resource-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.crisis-resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.resource-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #dc2626;
}

.resource-content {
    flex: 1;
    position: relative;
}

.resource-content h3 {
    font-size: 1.1em;
    color: #000;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.resource-number {
    font-size: 1.25em;
    color: #dc2626;
    font-weight: 700;
    margin: 8px 0;
}

.resource-description {
    color: #666;
    font-size: 0.95em;
    margin: 8px 0 0 0;
    line-height: 1.5;
}

.resource-badge {
    display: inline-block;
    background: #fecaca;
    color: #dc2626;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
    margin-top: 10px;
}

/* Articles Section */
.articles-section {
    padding: 70px 0;
    background: #fafafa;
}

.articles-section h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3em;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
    font-weight: normal;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05em;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

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

.article-entry {
    text-align: center;
    padding: 32px 28px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.article-entry + .article-entry {
    margin-top: 20px;
}

.article-entry a {
    color: #333;
    font-size: 1.05em;
    line-height: 1.7;
}

.article-entry p {
    margin-top: 10px;
    color: #666;
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Design for Resources Page */
@media (max-width: 992px) {
    .crisis-resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .crisis-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .crisis-header h2 {
        font-size: 1.8em;
        text-align: center;
    }
    
    .crisis-resource-card {
        flex-direction: column;
        text-align: center;
    }
    
    .resource-icon {
        margin: 0 auto;
    }
    
    .articles-section h2 {
        font-size: 2.2em;
    }
}