/* NNSP Excellence Hub Styles */
.nnsp-excellence-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.excellence-header {
    text-align: center;
    margin-bottom: 60px;
}

.excellence-header h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 20px;
}

.excellence-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-image,
.mission-image,
.full-width-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    display: block;
}

.mission-statement {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    text-align: center;
}

.mission-statement h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mission-statement p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.excellence-pillars {
    margin-bottom: 60px;
}

.excellence-pillars h3 {
    text-align: center;
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 40px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pillar-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #28a745;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pillar-icon i {
    font-size: 1.5rem;
    color: white;
}

.pillar-card h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.pillar-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pillar-card ul {
    list-style: none;
    padding: 0;
}

.pillar-card li {
    color: #555;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.pillar-card li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.section-image {
    text-align: center;
    margin: 60px 0;
}

.image-caption {
    font-style: italic;
    color: #666;
    margin-top: 15px;
    font-size: 0.95rem;
}

.platform-services {
    margin-bottom: 60px;
}

.platform-services h3 {
    text-align: center;
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.service-category {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-3px);
}

.service-header {
    background: linear-gradient(135deg, #2c5530, #28a745);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-header i {
    font-size: 1.5rem;
}

.service-header h4 {
    margin: 0;
    font-size: 1.2rem;
}

.service-content {
    padding: 25px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
}

.feature-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.feature-item span {
    color: #555;
    font-size: 0.9rem;
}

.success-stories {
    margin-bottom: 60px;
}

.success-stories h3 {
    text-align: center;
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 40px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.story-icon i {
    font-size: 1.5rem;
    color: white;
}

.story-card h4 {
    color: #2c5530;
    margin-bottom: 20px;
}

.story-card blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.story-card cite {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.excellence-cta {
    background: linear-gradient(135deg, #2c5530, #28a745);
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.excellence-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.excellence-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-buttons .btn-primary {
    background: white;
    color: #2c5530;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #2c5530;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #2c5530;
}

/* Responsive Design */
@media (max-width: 768px) {
    .excellence-header h2 {
        font-size: 2rem;
    }

    .excellence-subtitle {
        font-size: 1rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .excellence-header h2 {
        font-size: 1.8rem;
    }

    .pillar-card,
    .service-category,
    .story-card {
        padding: 20px;
    }

    .mission-statement {
        padding: 25px;
    }

    .excellence-cta {
        padding: 30px 20px;
    }
}



/* Expanded Service Styles */
.expanded-service {
    max-width: none;
    grid-column: 1 / -1;
}

.service-subsection {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.service-subsection h5 {
    color: #2c5530;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-subsection h6 {
    color: #2c5530;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Standards Statistics */
.standards-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.3;
}

/* Search Features */
.search-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.search-method {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-method ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.search-method li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.search-method li:before {
    content: "•";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Management Features */
.management-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.mgmt-feature {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mgmt-feature h6 {
    margin-bottom: 10px;
}

.mgmt-feature p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Notification Types */
.notification-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.notif-type {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notif-type h6 {
    margin-bottom: 10px;
}

.notif-type p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Format Options */
.format-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.format-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.format-item i {
    font-size: 1.5rem;
    color: #28a745;
    margin-top: 5px;
}

.format-item strong {
    color: #2c5530;
    display: block;
    margin-bottom: 8px;
}

.format-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Integration Options */
.integration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.integration-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.integration-item h6 {
    margin-bottom: 10px;
}

.integration-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Support Features */
.support-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.support-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.support-item i {
    font-size: 1.5rem;
    color: #28a745;
    margin-top: 5px;
}

.support-item strong {
    color: #2c5530;
    display: block;
    margin-bottom: 8px;
}

.support-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design for Expanded Service */
@media (max-width: 768px) {
    .standards-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .search-features,
    .management-features,
    .notification-types,
    .format-options,
    .integration-options,
    .support-features {
        grid-template-columns: 1fr;
    }

    .service-subsection {
        padding: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .format-item,
    .support-item {
        flex-direction: column;
        text-align: center;
    }

    .format-item i,
    .support-item i {
        margin-top: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .standards-stats {
        grid-template-columns: 1fr;
    }

    .service-subsection h5 {
        font-size: 1.1rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .service-subsection h6 {
        font-size: 0.95rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}