/* Extracted from: /pages/corporate/index.htm */
/* Corporate Page Styles */
        .corporate-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #e85018 100%);
            padding: 100px 20px 80px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin-bottom: 40px;
        }

        .corporate-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"/></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.1;
        }

        .corporate-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .corporate-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.95;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

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

        /* Mission & Vision Section */
        .mission-vision-section {
            padding: 40px 0;
            background: #f9fafb;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .mv-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #f1f5f9;
        }

        .mv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .mv-card .icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), #e85018);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 2rem;
        }

        .mv-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #111827;
        }

        .mv-card p {
            color: #6b7280;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Values Section */
        .values-section {
            padding: 60px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            color: #111827;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            color: #6b7280;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 50px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .value-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 12px;
            background: #f9fafb;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .value-item:hover {
            background: white;
            border-color: #f1f5f9;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }

        .value-item .icon {
            width: 60px;
            height: 60px;
            background: rgba(232, 80, 24, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        .value-item h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #111827;
        }

        .value-item p {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            color: white;
            border-radius: 20px;
            margin: 40px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .stat-box {
            text-align: center;
        }

        .stat-box .number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .stat-box .label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Team Section */
        .team-section {
            padding: 60px 0;
            background: #f9fafb;
        }

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

        .team-member {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            border: 1px solid #f1f5f9;
        }

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

        .team-member img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .team-info {
            padding: 25px;
            text-align: center;
        }

        .team-info h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #111827;
        }

        .team-info .role {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .team-info p {
            color: #6b7280;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .corporate-hero h1 {
                font-size: 2rem;
            }

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

            .mv-grid,
            .values-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }
        }
