/* --- Global Resets & Layout --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    padding: 80px 0;
    border-bottom: 1px solid #e0e0e0;
}

h1 {
    font-size: 3em;
    color: #004d40; /* Primary Green */
    margin-bottom: 40px;
    text-align: center;
}

h2 {
    font-size: 2.2em;
    color: #004d40;
    margin-bottom: 25px;
    border-bottom: 2px solid #ff6f00; /* Accent Orange under title */
    display: inline-block;
    padding-bottom: 5px;
}

h3 {
    color: #ff6f00; 
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.hero-subpage {
    height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(0, 77, 64, 0.8), rgba(0, 77, 64, 0.8)), url('hero-bg.jpg'); /* Placeholder */
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-subpage h1 {
    color: white;
    font-size: 3.5em;
    margin-bottom: 10px;
}

.hero-subpage p {
    font-size: 1.3em;
    font-weight: 300;
}

/* --- Anchor Navigation --- */
.anchor-nav {
    text-align: center; 
    padding: 15px 0; 
    background-color: #004d40; 
    color: white;
}
.anchor-nav a {
    color: white; 
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
.anchor-nav a:hover {
    color: #ff6f00;
}

/* --- Story & Mission --- */
.mission-story-detail .container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.mission-story-detail .section-text {
    flex: 2;
}

.section-text p {
    margin-bottom: 15px;
}

.section-image {
    flex: 1;
    min-width: 300px;
    padding-top: 60px;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #ff6f00;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.vision-quote {
    font-size: 1.5em;
    font-style: italic;
    color: #333;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    background-color: #fff;
}

.network-section h2, .technology-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    color: #666;
}

.distribution-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.distribution-table th,
.distribution-table td {
    padding: 15px;
    border: 1px solid #eee;
    text-align: left;
}

.distribution-table th {
    background-color: #004d40;
    color: white;
    font-weight: bold;
}

.distribution-table tr:nth-child(even) {
    background-color: #f4f4f4;
}

.icon-table {
    color: #ff6f00;
    margin-right: 10px;
}

.technology-section {
    background-color: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tech-item {
    text-align: center;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s;
}

.tech-item:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 3em;
    color: #ff6f00;
    margin-bottom: 15px;
}

.profiles-section {
    background-color: #f0f0f0;
}

.profiles-section h2 {
    margin: 0 auto 10px;
    text-align: center;
}

.team-grid-profiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.profile-card {
    text-align: center;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-photo {
    width: 120px;
    height: 120px; 
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
}

.profile-card h4 {
    color: #004d40;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.4em;
}

.profile-card .title {
    color: #ff6f00;
    font-weight: bold;
    margin-bottom: 10px;
}

.profile-card .bio {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 15px;
}

.expertise-tags {
    margin-top: 10px;
}

.tag {
    display: inline-block;
    background-color: #e0f2f1; 
    color: #004d40;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 0.8em;
    margin: 2px;
}

.page-footer-nav {
    text-align: center;
    padding: 20px 0;
    background-color: #1a1a1a;
    color: #b0b0b0;
    font-size: 0.9em;
}

@media (max-width: 992px) {
    .mission-story-detail .container {
        flex-direction: column;
    }
    .team-grid-profiles, .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .team-grid-profiles, .tech-grid {
        grid-template-columns: 1fr;
    }
    .hero-subpage h1 {
        font-size: 2.5em;
    }
}