/* Base Styles */
/* New NSS Header Styles */
.nss-header {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.nss-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Add these to your existing CSS */
.nss-header-content {
    position: relative;
}

.edit-page-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .edit-page-btn {
        position: static;
        transform: none;
        margin-top: 10px;
    }

    .nss-header-content {
        flex-direction: column;
        gap: 10px;
    }
}
}
/* Add these to your existing CSS */

.edit-page-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .edit-page-btn {
        position: static;
        transform: none;
        margin-top: 10px;
    }

    .nss-header-content {
        flex-direction: column;
        gap: 10px;
    }
}
.nss-logo {
    height: 80px;
    width: auto;
}

.nss-title {
    font-size: 2.5rem;
    margin: 0;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Responsive adjustments for header */
@media (max-width: 768px) {
    .nss-header-content {
        flex-direction: column;
        gap: 10px;
    }

    .nss-title {
        font-size: 2rem;
    }

    .nss-logo {
        height: 60px;
    }
}


.nss-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-divider {
    height: 3px;
    width: 80px;
    background: #3498db;
    margin: 0 auto;
    border-radius: 3px;
}

.section-content {
    font-size: 1.1rem;
}

/* Introduction Section */
.introduction-section {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Activities Section */
.activities-section {
    padding: 2rem 0;
}

.activity-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
    text-align: center;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.activity-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.activity-desc {
    color: #7f8c8d;
}

/* Benefits Section */
.benefits-section {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefits-section ul {
    padding-left: 1.5rem;
}

.benefits-section li {
    margin-bottom: 0.5rem;
}

/* Camps Section */
.camps-section {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-content {
        font-size: 1rem;
    }
}
