/* ============================================= */
/* === Seamless Navigation Experience Section === */
/* ============================================= */
.navigation-experience-section {
    background-color: #FAF8F5; /* Very light beige background */
    padding: 60px 0;
}

.navigation-experience-section h2 {
    font-size: 2.2rem;
    color: #3E593C; /* Dark green text */
    margin-bottom: 40px;
    font-weight: 600;
    text-align: left; /* Title aligned to the left */
}

.nav-items-list { /* Container for the list of 5 navigation items */
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 25px;
}

.nav-item { /* Each item (icon + text content) */
    display: flex;
    align-items: flex-start; /* Align icon with top of text block */
    background-color: #fff; /* White background for each item's "card" */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}
.nav-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Slightly more shadow on hover */
}

.nav-icon-container { /* Container for the SVG icon */
    background-color: #EFEBE8; /* Slightly darker beige for icon background */
    border-radius: 12px;      /* Rounded corners */
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-right: 25px; /* Space between icon and text */
    flex-shrink: 0;     /* Prevent icon container from shrinking */
}

.nav-icon-container img { /* The SVG icon itself */
    width: 28px;
    height: 28px;
    /* color: #3E593C; /* For SVGs using currentColor (Ensure SVGs are dark or use this) */
}

.nav-item-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.nav-item-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* --- Seamless Navigation Experience Section (Mobile: max-width: 768px) --- */
@media (max-width: 768px) {
    .navigation-experience-section h2 {
        font-size: 2rem; /* Adjusted from 1.8rem to be consistent */
        text-align: center; /* Center title on mobile */
    }
    .nav-item {
        padding: 15px;
        flex-direction: column; /* Stack icon and text */
        align-items: center; /* Center items when stacked */
        text-align: center; /* Center text content */
    }
    .nav-icon-container {
        width: 50px;
        height: 50px;
        padding: 12px;
        margin-right: 0; /* No right margin when stacked */
        margin-bottom: 15px; /* Space below icon */
    }
    .nav-icon-container img {
        width: 24px;
        height: 24px;
    }
    .nav-item-content h3 {
        font-size: 1.15rem;
    }
    .nav-item-content p {
        font-size: 0.9rem;
    }
}