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

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.pinjampasti-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.pinjampasti-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px;
}

.pinjampasti-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pinjampasti-logo {
    width: 50px;
    height: 50px;
    background-image: url('../img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.pinjampasti-brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1FBE8A;
    margin: 0;
    white-space: nowrap;
}

.pinjampasti-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.pinjampasti-nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.pinjampasti-nav-menu a:hover,
.pinjampasti-nav-active {
    color: #1FBE8A;
}

.pinjampasti-nav-menu a:hover::after {
    width: 100%;
}

.pinjampasti-nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #1FBE8A, #16A374);
    transition: width 0.3s ease;
}

.pinjampasti-nav-active::after {
    width: 100%;
}

.pinjampasti-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.pinjampasti-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Main Content */
.pinjampasti-main {
    max-width: 900px;
    margin: 100px auto 40px auto;
    padding: 40px 24px 32px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(31,190,138,0.08);
    font-size: 1.08rem;
    color: #333;
    line-height: 1.85;
}

.pinjampasti-main h1,
.pinjampasti-main h2,
.pinjampasti-main h3,
.pinjampasti-main h4 {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-weight: bold;
    margin-top: 2.2em;
    margin-bottom: 1em;
    color: #1FBE8A;
    line-height: 1.3;
}
.pinjampasti-main h1 { font-size: 2.2rem; border-bottom: 3px solid #1FBE8A; padding-bottom: 0.3em; }
.pinjampasti-main h2 { font-size: 1.5rem; border-left: 4px solid #1FBE8A; padding-left: 0.7em; }
.pinjampasti-main h3 { font-size: 1.15rem; color: #16a085; }
.pinjampasti-main h4 { font-size: 1rem; color: #2c3e50; }

.pinjampasti-main p {
    margin: 1.1em 0;
    color: #444;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
}

.pinjampasti-main ul,
.pinjampasti-main ol {
    margin: 1.1em 0 1.1em 2em;
    padding-left: 1.2em;
}
.pinjampasti-main ul {
    list-style: disc inside;
}
.pinjampasti-main ol {
    list-style: decimal inside;
}
.pinjampasti-main li {
    margin-bottom: 0.5em;
    color: #444;
    font-size: 1.05rem;
}

.pinjampasti-main strong {
    color: #1FBE8A;
    font-weight: bold;
}
.pinjampasti-main em {
    color: #16a085;
    font-style: italic;
}
.pinjampasti-main blockquote {
    border-left: 4px solid #1FBE8A;
    background: #f4fefb;
    color: #2c3e50;
    margin: 1.5em 0;
    padding: 1em 1.5em;
    font-style: italic;
    border-radius: 8px;
}
.pinjampasti-main hr {
    border: none;
    border-top: 1.5px dashed #1FBE8A;
    margin: 2em 0;
}

/* 小号文本 */
.pinjampasti-main small {
    color: #888;
    font-size: 0.95em;
}

/* 响应式优化 */
@media (max-width: 600px) {
    .pinjampasti-main {
        padding: 18px 6px 18px 6px;
        font-size: 0.98rem;
    }
    .pinjampasti-main h1 { font-size: 1.4rem; }
    .pinjampasti-main h2 { font-size: 1.15rem; }
    .pinjampasti-main h3 { font-size: 1.02rem; }
}

/* Hero Section */
.pinjampasti-about-hero {
    background: linear-gradient(135deg, #1FBE8A 0%, #16a974 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.pinjampasti-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pinjampasti-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.pinjampasti-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.pinjampasti-stat-item {
    text-align: center;
}

.pinjampasti-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.pinjampasti-stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Section Title */
.pinjampasti-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

/* Journey Section */
.pinjampasti-journey {
    padding: 5rem 0;
    background: #f8f9fa;
}

.pinjampasti-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.pinjampasti-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #1FBE8A;
    transform: translateX(-50%);
}

.pinjampasti-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.pinjampasti-timeline-item:nth-child(odd) .pinjampasti-timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 2rem;
}

.pinjampasti-timeline-item:nth-child(even) .pinjampasti-timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 2rem;
}

.pinjampasti-timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #1FBE8A;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.pinjampasti-timeline-content {
    width: 45%;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pinjampasti-timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1FBE8A;
}

.pinjampasti-timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Mission Vision */
.pinjampasti-mission-vision {
    padding: 5rem 0;
}

.pinjampasti-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.pinjampasti-mission,
.pinjampasti-vision {
    padding: 2rem;
}

.pinjampasti-mission h2,
.pinjampasti-vision h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1FBE8A;
}

.pinjampasti-mission p,
.pinjampasti-vision p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.pinjampasti-mission-points {
    list-style: none;
}

.pinjampasti-mission-points li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.pinjampasti-mission-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1FBE8A;
    font-weight: 700;
}

.pinjampasti-vision-goals {
    display: grid;
    gap: 1.5rem;
}

.pinjampasti-goal-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #1FBE8A;
}

.pinjampasti-goal-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1FBE8A;
}

.pinjampasti-goal-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Team Section */
.pinjampasti-team {
    padding: 5rem 0;
    background: #f8f9fa;
}

.pinjampasti-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pinjampasti-team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pinjampasti-team-member:hover {
    transform: translateY(-5px);
}

.pinjampasti-member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.pinjampasti-member-position {
    color: #1FBE8A;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pinjampasti-member-bio {
    color: #666;
    line-height: 1.6;
}

/* Certifications */
.pinjampasti-certifications {
    padding: 5rem 0;
}

.pinjampasti-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pinjampasti-cert-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pinjampasti-cert-item:hover {
    transform: translateY(-5px);
}

.pinjampasti-cert-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1FBE8A;
}

.pinjampasti-cert-item p {
    color: #666;
    line-height: 1.6;
}

/* CSR Section */
.pinjampasti-csr {
    padding: 5rem 0;
    background: #f8f9fa;
}

.pinjampasti-csr-programs {
    display: grid;
    gap: 3rem;
}

.pinjampasti-csr-program {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pinjampasti-csr-program h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1FBE8A;
}

.pinjampasti-csr-program p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pinjampasti-csr-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.pinjampasti-csr-stats span {
    background: #f0f9ff;
    color: #1FBE8A;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA Section */
.pinjampasti-cta {
    background: linear-gradient(135deg, #1FBE8A 0%, #16a974 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.pinjampasti-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pinjampasti-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pinjampasti-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pinjampasti-btn-primary,
.pinjampasti-btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pinjampasti-btn-primary {
    background: white;
    color: #1FBE8A;
}

.pinjampasti-btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.pinjampasti-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.pinjampasti-btn-secondary:hover {
    background: white;
    color: #1FBE8A;
    transform: translateY(-2px);
}

/* Footer */
.pinjampasti-footer {
    background: #2d3748;
    color: #a0aec0;
    padding: 3rem 0 1rem;
}

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

.pinjampasti-footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pinjampasti-footer-section ul {
    list-style: none;
}

.pinjampasti-footer-section ul li {
    margin-bottom: 0.5rem;
}

.pinjampasti-footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.pinjampasti-footer-section a:hover {
    color: #1FBE8A;
}

.pinjampasti-footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pinjampasti-nav-menu {
        display: none;
    }

    .pinjampasti-menu-toggle {
        display: flex;
    }

    .pinjampasti-hero-title {
        font-size: 2rem;
    }

    .pinjampasti-hero-subtitle {
        font-size: 1rem;
    }

    .pinjampasti-section-title {
        font-size: 2rem;
    }

    .pinjampasti-mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pinjampasti-timeline::before {
        left: 20px;
    }

    .pinjampasti-timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .pinjampasti-timeline-year {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        align-self: flex-start;
        margin-left: 20px;
    }

    .pinjampasti-timeline-content {
        width: 100%;
        margin-left: 40px !important;
        margin-right: 0 !important;
        text-align: left !important;
        padding: 1.5rem;
    }

    .pinjampasti-cta h2 {
        font-size: 2rem;
    }

    .pinjampasti-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pinjampasti-btn-primary,
    .pinjampasti-btn-secondary {
        width: 200px;
    }
} 