* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #1e2a3e;
            line-height: 1.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Header */
        .page-header {
            background: linear-gradient(135deg, #0a2b3e 0%, #1e4a6b 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 16px;
        }

        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Back Link */
        .back-link {
            display: inline-block;
            margin: 32px 0 24px;
            color: #c47b2e;
            text-decoration: none;
            font-weight: 500;
        }

        .back-link:hover {
            text-decoration: underline;
        }

        /* About Section */
        .about-section {
            padding: 40px 0 60px;
        }

        .about-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
            margin-bottom: 60px;
        }

        .about-content {
            flex: 1;
        }

        .about-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #0a2b3e;
        }

        .about-content p {
            color: #4a5b6b;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .about-image {
            flex: 1;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Stats Section */
        .stats-section {
            background: #0a2b3e;
            padding: 60px 0;
            margin: 40px 0;
            color: white;
        }

        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: #c47b2e;
            margin-bottom: 8px;
        }

        /* Mission Vision Values */
        .mission-vision {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            margin: 60px 0;
        }

        .mv-card {
            flex: 1;
            background: #f8fafc;
            padding: 40px 32px;
            border-radius: 28px;
            text-align: center;
            transition: all 0.25s ease;
        }

        .mv-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
        }

        .mv-icon {
            font-size: 3rem;
            color: #c47b2e;
            margin-bottom: 20px;
        }

        .mv-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        .mv-card p {
            color: #4a5b6b;
            line-height: 1.6;
        }

        /* Core Values */
        .values-section {
            margin: 60px 0;
            text-align: center;
        }

        .values-section h2 {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .values-section > p {
            color: #4a5b6b;
            max-width: 700px;
            margin: 0 auto 48px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .value-card {
            background: white;
            border: 1px solid #eef2f8;
            border-radius: 24px;
            padding: 32px;
            transition: all 0.25s ease;
        }

        .value-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
            border-color: #c47b2e30;
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: #fef3e2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .value-icon i {
            font-size: 1.8rem;
            color: #c47b2e;
        }

        .value-card h3 {
            margin-bottom: 12px;
        }

        .value-card p {
            color: #4a5b6b;
            font-size: 0.95rem;
        }

        /* Why Choose Us */
        .why-section {
            background: #f8fafc;
            padding: 60px;
            border-radius: 32px;
            margin: 60px 0;
        }

        .why-section h2 {
            text-align: center;
            margin-bottom: 48px;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .why-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .why-icon {
            width: 50px;
            height: 50px;
            background: #c47b2e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .why-icon i {
            font-size: 1.2rem;
            color: white;
        }

        .why-text h4 {
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .why-text p {
            color: #4a5b6b;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Services List */
        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
        }

        .service-item i {
            color: #c47b2e;
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(135deg, #0a2b3e 0%, #1e4a6b 100%);
            border-radius: 32px;
            margin: 40px 0;
            color: white;
        }

        .cta-section h2 {
            font-size: 1.8rem;
            margin-bottom: 16px;
        }

        .cta-section p {
            margin-bottom: 24px;
            opacity: 0.9;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #c47b2e;
            color: white;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
        }

        .cta-btn:hover {
            background: #a5631f;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #0a2b3e;
            color: #cddfea;
            padding: 48px 0 24px;
            margin-top: 40px;
        }

        .footer-content {
            text-align: center;
        }

        .footer-content a {
            color: #c47b2e;
            text-decoration: none;
        }

        .copyright {
            text-align: center;
            padding-top: 32px;
            margin-top: 32px;
            border-top: 1px solid #255f7a;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }
            .page-header {
                padding: 60px 0 40px;
            }
            .page-header h1 {
                font-size: 2rem;
            }
            .why-section {
                padding: 32px;
            }
            .mission-vision {
                flex-direction: column;
            }
        }