```
* {
    border: 1px solid red;
}
/*
Prayas for Environment and Society (PES)
Style Sheet
---
Professional Color Palette (v4 - Inspired by Reference):
- Background: #f8f9fa /* Off-white for a clean, soft look */
- Text: #343a40 /* Dark gray for readability */
- Primary (Turtle Green): #2a9d8f
- Accent (Light Teal): #a8dadc
- Muted Text: #6c757d
- White: #ffffff
- Border: #dee2e6
*/

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

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 18px; /* Base font size */
    line-height: 1.8; /* Increased for readability */
    color: #343a40;
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: fadeInPage 0.7s ease-in-out; /* Slower, more graceful fade-in */
    letter-spacing: 0.2px; /* Subtle letter-spacing for body */
}

.container {
    width: 90%;
    max-width: 1140px; /* Standard container width */
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2a9d8f; /* Turtle Green */
    line-height: 1.3;
}

h1 { font-size: 3.5rem; margin-bottom: 1rem; } /* Larger Hero Headline */
h2 { font-size: 2.75rem; } /* Larger Section Titles */
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #2a9d8f; /* Turtle Green */
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover {
    color: #228074; /* Darker Turtle Green */
}

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

section {
    padding: 8rem 0; /* Further increased padding for more breathing room */
    overflow-x: hidden;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 30px; /* Rounded edges */
    cursor: pointer;
    transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary {
    background-color: #2a9d8f; /* Turtle Green */
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 8px rgba(42, 157, 143, 0.25);
}

.btn-primary:hover {
    background-color: #228074; /* Darker Turtle Green */
    color: #ffffff; /* Keep text white on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.btn-primary:active {
    transform: translateY(0px) scale(0.98);
    box-shadow: 0 2px 5px rgba(42, 157, 143, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #2a9d8f;
    border: 2px solid #2a9d8f; /* Turtle Green border */
    transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-secondary:hover {
    background-color: #2a9d8f; /* Turtle Green */
    border-color: #2a9d8f;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0px) scale(0.98);
}

/* --- Header & Navigation --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.8); /* More opaque on scroll */
    border-bottom-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-header.header-collapsed {
    padding: 0.5rem 0;
}

.main-header.header-collapsed .main-nav ul {
    opacity: 0;
    visibility: hidden;
}

.main-header.header-collapsed .logo {
    font-size: 1.8rem;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.main-nav .logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem; /* Eye-catching size */
    font-weight: 700;
    color: #1f2937; /* Dark text for contrast on light glass */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: font-size 0.3s ease;
}

.logo-full-name {
    font-family: 'Lato', sans-serif;
    font-size: 1rem; /* Larger for readability */
    font-weight: 400;
    color: #4b5563;
    margin-left: 0.75rem;
    white-space: nowrap;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1f2937;
}

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

.main-nav ul li a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1f2937; /* Dark text for contrast */
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-nav ul li a:hover {
    color: #2a9d8f; /* Turtle Green */
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2a9d8f; /* Turtle Green */
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.btn-donate {
    background-color: #2a9d8f; /* Turtle Green */
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(42, 157, 143, 0.3);
}

.main-nav .btn-donate {
    padding: 10px 25px;
    border-radius: 30px;
}

.btn-donate:hover {
    background-color: #228074; /* Darker Turtle Green */
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.4);
}

/* --- Hero Section --- */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1495562569060-2eec283d3391?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

#hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

#hero p {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    max-width: 600px;
    margin: 1.5rem auto 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* --- Footer --- */
.main-footer {
    background: #1f2937 url('https://www.transparenttextures.com/patterns/natural-paper.png'); /* Softer Charcoal with texture */
    color: #f9fafb;
    padding: 5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-grid h4 {
    font-family: 'Lato', sans-serif;
    color: #ffffff; /* White headings */
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-grid p, .footer-grid ul {
    color: #d1d5db; /* Lighter grey for text */
    font-size: 0.95rem;
}

.footer-grid a {
    color: #9ca3af; /* Cool Gray for links */
}

.footer-grid ul {
    list-style: none;
}

.footer-grid ul li {
    margin-bottom: 0.5rem;
}

.footer-grid ul li a:hover {
    color: #f9fafb;
    text-decoration: underline;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #4b5563; /* Softer border */
    font-size: 0.9rem;
}

/* --- Utility Classes --- */
.text-center {
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 6rem; /* Further increased spacing */
    position: relative;
}

.section-title::before {
    content: '·';
    display: block;
    font-size: 2rem;
    color: #a8dadc; /* Light Teal */
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2a9d8f; /* Turtle Green accent */
    border-radius: 2px;
}

.section-bg-light {
    background-image: linear-gradient(to top, #f9fafb, #ffffff);
}

/* --- Impact Section --- */
#impact .impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

#impact .impact-item i {
    font-size: 3rem;
    color: #a8dadc; /* Light Teal */
    margin-bottom: 1rem;
}

#impact .impact-item h3 {
    font-size: 2.5rem;
    color: #2a9d8f;
}

/* --- Focus Section --- */
#focus .focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#focus .focus-item {
    background-color: #ffffff;
    padding: 2.5rem;
    text-align: center;
    border-radius: 15px; /* More rounded */
    border: 1px solid #dee2e6;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

#focus .focus-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    border-color: #2a9d8f; /* Turtle Green */
}

#focus .focus-item i {
    font-size: 3.5rem;
    color: #2a9d8f; /* Turtle Green */
    margin-bottom: 1.5rem;
}

#focus .focus-item .learn-more {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2a9d8f;
}

/* --- Projects Section --- */
#projects .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: none; /* Removing shadow for a flatter, cleaner card */
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}


.project-card .project-image {
    overflow: hidden;
    position: relative;
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.project-card .project-content {
    padding: 1.5rem;
    position: relative;
}

.project-card .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 128, 61, 0.7);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* --- Get Involved CTA Section --- */
#get-involved-cta {
    background: #2a9d8f url('https://www.transparenttextures.com/patterns/natural-paper.png');
    color: #ffffff;
}

#get-involved-cta .section-title {
    color: #ffffff;
}

#get-involved-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

#get-involved-cta .cta-buttons .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
    margin-left: 1rem;
}

#get-involved-cta .cta-buttons .btn-secondary:hover {
    background-color: #ffffff;
    color: #15803d;
}

/* --- Testimonials Section --- */
#testimonials .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #dee2e6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem; /* Replaced margin-right */
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin: 1rem 0 1.5rem; /* Adjusted margin */
    color: #4b5563; /* Softer text color */
}

.testimonial cite {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #2a9d8f;
}

/* --- News Section --- */
#news .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.news-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item h3 {
    padding: 1rem 1.5rem 0.5rem;
}

.news-item p {
    padding: 0 1.5rem;
}

.news-item a {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    font-weight: 700;
}

/* --- Inner Page Specifics --- */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1516683037151-9a76bd2d7a85?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    color: #ffffff;
    padding: 6rem 0; /* Increased padding */
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    font-size: 3rem;
}

.split-section {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #ffffff; /* Thinner border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Softer shadow */
}

.team-member h4 {
    color: #15803d;
    font-size: 1.2rem;
}

.team-member span {
    font-style: italic;
    color: #6b7280;
}

/* --- Get Involved Page --- */
.donate-content, .volunteer-content, .partner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.donation-form {
    margin-top: 2rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04); /* Softer shadow */
}

.donation-amounts {
    margin-top: 1rem;
}

.donation-amounts .btn {
    margin: 5px;
}

#volunteer .contact-form {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: left;
}

#submit-btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    background-color: #ffffff;
    transition: border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2a9d8f; /* Turtle Green */
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details i {
    margin-right: 10px;
    color: #2a9d8f; /* Turtle Green */
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

/* --- Programs Page --- */
.program-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.program-section:last-child {
    border-bottom: none;
}

/* Reverse layout for alternating sections */
.program-section.section-bg-light {
    padding: 4rem; /* Add padding for visual separation */
}

.program-section .program-image {
    flex: 1;
}

.program-section .program-content {
    flex: 1;
}

.program-content h4 {
    margin-top: 1.5rem;
    color: #2a9d8f;
}

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

.program-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.program-content ul li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #9ca3af; /* Cool Gray */
}

/* --- Responsive Design --- */

/* Tablets and smaller desktops */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2, .section-title { font-size: 2rem; }

    .main-nav ul {
        /* Mobile Menu - Hidden by default, shown with JS */
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(249, 250, 251, 0.98); /* Almost opaque background */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .main-nav ul.nav-open {
        display: flex;
        transform: translateX(0);
    }

    .main-nav ul li {
        margin: 1.5rem 0; /* Vertical spacing */
    }

    .main-nav ul li a {
        font-size: 1.5rem; /* Larger font size for mobile menu */
        color: #1f2937;
    }

    .main-nav ul li a.active::after {
        display: none; /* No underline for active on mobile overlay */
    }

    .main-nav .btn-donate {
        margin-top: 1.5rem;
        padding: 18px 40px;
        font-size: 1.2rem;
    }

    .logo-full-name {
        display: none; /* Hide full name on smaller screens */
    }

    .mobile-menu-toggle {
        display: block;
    }

    .split-section, .program-section {
        flex-direction: column;
    }

    .program-section.section-bg-light {
        flex-direction: column-reverse;
    }

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

/* Mobile phones */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Adjust base font size for mobile */
    }

    h1 { font-size: 2.8rem; }
    h2, .section-title { font-size: 2.2rem; }
    h3 { font-size: 1.4rem; }

    section {
        padding: 6rem 0; /* Consistent padding for sections */
    }

    #hero {
        height: auto;
        padding: 10rem 20px 6rem; /* More top padding, less bottom */
    }

    #hero h1 {
        font-size: 3rem; /* Larger hero text for impact */
    }

    #hero p {
        font-size: 1.2rem;
    }

    .impact-grid, .focus-grid, .projects-grid, .testimonial-grid, .news-grid, .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0; /* Start hidden */
    animation-fill-mode: forwards; /* Stay visible after animation */
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-slide-up {
    animation: heroSlideUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-fade-in {
    animation: heroFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* --- Our Reach Map --- */
#our-reach .map-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #a8dadc; /* Light Teal */
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hotspot:hover {
    transform: scale(1.5);
}

.hotspot span {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1f2937;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hotspot:hover span {
    opacity: 1;
    visibility: visible;
}

/* --- Transparency Section --- */
#transparency .transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

#transparency .transparency-item {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#transparency .transparency-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

#transparency .transparency-item i {
    font-size: 3rem;
    color: #2a9d8f; /* Turtle Green */
    margin-bottom: 1rem;
}

df-messenger {
 z-index: 1001;
 position: fixed;
 bottom: 16px;
 right: 16px;
}
```
