/* administration-staff.css - Staff Office Page Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1a4c8c;
    --secondary-blue: #2c6cb0;
    --accent-red: #e74c3c;
    --light-blue: #e8f1ff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
    --text-color: #333333;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --staff-color: #f39c12;
    --welfare-color: #e74c3c;
    --development-color: #3498db;
    --tsc-color: #2ecc71;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    flex: 0 0 100px;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

/* Navigation Styles */
.nav-menu {
    display: flex;
    align-items: center;
}

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

.nav-item {
    margin-left: 25px;
    position: relative;
}

.nav-item a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--dark-gray);
    padding: 8px 0;
    position: relative;
}

.nav-item a:hover {
    color: var(--primary-blue);
}

.nav-item.active a {
    color: var(--primary-blue);
}

.nav-item.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.admin-btn a {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
}

.admin-btn a:hover {
    background-color: var(--secondary-blue);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Page Header */
.page-header {
    height: 400px;
    background-image: url('../assets/staff-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.9) 0%, rgba(230, 126, 34, 0.8) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    width: 100%;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb span {
    color: var(--white);
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-line {
    width: 80px;
    height: 4px;
    background-color: var(--accent-red);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Overview Section */
.overview-section {
    background-color: var(--white);
}

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

.overview-text {
    padding-right: 30px;
}

.overview-text .section-title {
    text-align: left;
    font-size: 2.2rem;
}

.overview-text .section-line {
    margin-left: 0;
    margin-right: auto;
}

.overview-text p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: #fef6e8;
    border-radius: 8px;
    border-left: 4px solid var(--staff-color);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--staff-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.overview-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.overview-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(243, 156, 18, 0.9);
    color: var(--white);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.image-caption i {
    font-size: 1.2rem;
}

/* Functions Section */
.functions-section {
    background-color: var(--light-gray);
}

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

.function-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 5px solid var(--staff-color);
}

.function-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: #fef6e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--staff-color);
}

.card-header h3 {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.function-card > p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
}

.card-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.card-list i {
    color: var(--staff-color);
    font-size: 0.8rem;
}

/* Development Section */
.development-section {
    background-color: var(--white);
}

.development-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.program-timeline {
    position: relative;
    padding-left: 40px;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--development-color);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: -60px;
    width: 80px;
    height: 40px;
    background-color: var(--development-color);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

.timeline-content {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    flex-grow: 1;
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.timeline-tags {
    display: flex;
    gap: 10px;
}

.tag {
    background-color: var(--development-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.development-stats h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--staff-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-weight: 500;
}

.stat-progress {
    width: 100%;
    height: 8px;
    background-color: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: var(--staff-color);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease-out;
}

/* Welfare Section */
.welfare-section {
    background-color: var(--light-gray);
}

.welfare-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.welfare-services h3, .welfare-process h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #fdeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--welfare-color);
}

.service-details h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.service-details p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--welfare-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: #c0392b;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--staff-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.step-content {
    flex-grow: 1;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-content h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0;
}

.process-note {
    background-color: #e8f4fc;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.process-note i {
    color: var(--development-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.process-note p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
}

/* TSC Section */
.tsc-section {
    background-color: var(--white);
}

.tsc-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.tsc-info h3, .tsc-documents h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.tsc-services {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tsc-service {
    display: flex;
    gap: 20px;
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
}

.service-icon {
    background-color: #e8f6ef;
    color: var(--tsc-color);
}

.service-details h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.service-details p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.document-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.doc-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #e8f6ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--tsc-color);
}

.doc-details h4 {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.deadline {
    font-size: 0.85rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-pending {
    background-color: #f8c471;
    color: #7d6608;
}

.status-in-progress {
    background-color: #85c1e9;
    color: #154360;
}

.status-upcoming {
    background-color: #a3e4d7;
    color: #0e6251;
}

/* Team Section */
.team-section {
    background-color: var(--light-gray);
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-lead {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

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

.lead-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.lead-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lead-details h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.lead-title {
    font-size: 1.1rem;
    color: var(--staff-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.lead-bio p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.lead-qualifications {
    margin-bottom: 20px;
}

.lead-qualifications p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.lead-qualifications i {
    color: var(--staff-color);
}

.lead-contact {
    display: flex;
    gap: 30px;
}

.lead-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.lead-contact i {
    color: var(--staff-color);
}

.team-members h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

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

.member-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 200px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-details {
    padding: 20px;
}

.member-details h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.member-role {
    font-size: 0.9rem;
    color: var(--staff-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.member-responsibility {
    font-size: 0.85rem;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--staff-color) 0%, #e67e22 100%);
    color: var(--white);
}

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

.contact-info {
    padding-right: 30px;
}

.contact-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details {
    display: grid;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    background-color: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-text p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.contact-resources h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--white);
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-link {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.resource-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.resource-link i {
    font-size: 1.5rem;
    color: var(--white);
    margin-top: 3px;
}

.resource-link h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.resource-link p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.resource-link.back-link {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-motto {
    font-style: italic;
    margin-bottom: 20px;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-red);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-red);
    margin-top: 3px;
}

.vision-text, .mission-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 1s ease-out;
}

.animate-fade-up-delay {
    animation: fadeUp 1s ease-out 0.3s both;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .development-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welfare-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tsc-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lead-profile {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .page-header {
        height: 350px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .program-timeline {
        padding-left: 30px;
    }
    
    .program-timeline::before {
        left: 15px;
    }
    
    .timeline-date {
        left: -30px;
        width: 70px;
        font-size: 0.8rem;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin: 0 auto;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .tsc-service {
        flex-direction: column;
        text-align: center;
    }
    
    .members-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .functions-grid {
        grid-template-columns: 1fr;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .lead-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        padding-right: 0;
    }
}