/* Extracted from: /pages/about-us/index.htm */
/* About Us Specific Styles */
        .main-content {
            padding: 0 !important;
            max-width: 100% !important;
        }

        .about-hero {
            background: linear-gradient(135deg, #FF6B35 0%, #FF8F66 100%);
            padding: 80px 20px;
            color: white;
            text-align: center;
            border-radius: 0 0 30px 30px;
            margin-bottom: -60px;
            position: relative;
            z-index: 1;
        }

        .about-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .about-hero p {
            font-size: 1.1rem;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .about-content-wrapper {
            max-width: 1000px;
            margin: 0 auto 60px auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .about-card {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            line-height: 1.8;
            color: #334155;
            font-size: 1.05rem;
            border: 1px solid #e2e8f0;
        }

        .about-card h2 {
            color: #1e293b;
            font-size: 1.8rem;
            margin-bottom: 25px;
            font-weight: 700;
            margin-top: 30px;
        }

        .about-card h2:first-of-type {
            margin-top: 0;
        }

        .about-card p {
            margin-bottom: 20px;
        }

        .about-card strong {
            color: #FF6B35;
        }

        .about-highlight {
            background: #fff7ed;
            border-left: 4px solid #FF6B35;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            color: #555;
        }

        .about-highlight h3 {
            color: #FF6B35;
            margin: 0 0 10px 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .about-hero {
                padding: 50px 20px 80px 20px;
                border-radius: 0 0 20px 20px;
                margin-bottom: -50px;
            }

            .about-hero h1 {
                font-size: 1.8rem;
            }

            .about-hero p {
                font-size: 1rem;
            }

            .about-card {
                padding: 30px 20px;
            }

            .about-card h2 {
                font-size: 1.4rem;
            }

            .about-highlight {
                padding: 20px;
            }

            .about-content-wrapper {
                margin-bottom: 40px;
            }
        }
