        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
       
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
             font-display: swap; 
            line-height: 1.6;
            color: #333;
            background: #ffffff;
        }
 @media (max-width: 480px) {
        /* Header */
        .p-header {
            background: #2c5aa0;
            color: white;
            padding: 2rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .p-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255,107,53,0.2) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(30px, -30px);
        }

        .p-header-content {
            position: relative;
            z-index: 1;
        }

        .p-header h1 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .p-header .p-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 400;
        }

        /* Hero Banner */
        .p-hero-banner {
            background: linear-gradient(45deg, #ff6b35, #ffab00);
            color: white;
            padding: 1.5rem 1rem;
            text-align: center;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
            margin-bottom: 2rem;
        }

        .p-hero-banner p {
            font-size: 1.1rem;
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        /* Section Styling */
        .p-section {
            padding: 0 1rem 2rem;
            margin-bottom: 1rem;
        }

        .p-section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .p-section-title {
            font-size: 1.2rem;
            color: #2c5aa0;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .p-section-subtitle {
            color: #666;
            font-size: 0.9rem;
        }

        /* Services Cards */
        .p-services-container {
            max-width: 400px;
            margin: 0 auto;
        }

        .p-service-item {
            background: white;
            margin-bottom: 1.5rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .p-service-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }

        .p-service-header {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 1.25rem;
            border-bottom: 3px solid #ff6b35;
        }

        .p-service-icon {
            width: 50px;
            height: 50px;
            background: transparent;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            color: white;
     
        }

        .p-service-item h3 {
            font-size: 1.1rem;
            color: #2c5aa0;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .p-service-content {
            padding: 1.25rem;
        }

        .p-service-content p {
            color: #666;
            font-size: .9rem;
            line-height: 1.4;
        }
        .p-service-content h4 {
            color: #666;
            font-size: 1.0rem;
            line-height: 1.4;
            font-weight: 400;
            margin-bottom: 1.0em;
        }
        .p-service-content li {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
            font-weight: 300;
            list-style-type: circle;
            margin-left: 15px;
        }
        /* Benefits Section */
        .p-benefits-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 2rem 1rem;
            margin: 2rem 0;
        }

        .p-benefits-container {
            max-width: 400px;
            margin: 0 auto;
        }

        .p-benefit-card {
            background: white;
            padding: 1.5rem;
            margin-bottom: 1.25rem;
            border-radius: 12px;
            border-left: 5px solid #ff6b35;
            box-shadow: 0 3px 12px rgba(0,0,0,0.06);
            position: relative;
            transition: all 0.3s ease;
        }

        .p-benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, transparent 100%);
            transition: width 0.3s ease;
        }

        .p-benefit-card:hover::before {
            width: 100%;
        }

        .p-benefit-card:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }

        .p-benefit-title {
            color: #2c5aa0;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .p-benefit-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }

        /* Service Areas */
        .p-areas-section {
            background: #ffffff;
            padding: 2rem 1rem;
        }

        .p-areas-intro {
            text-align: center;
            color: #666;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .p-areas-container {
            max-width: 400px;
            margin: 0 auto;
        }

        .p-area-group {
            margin-bottom: 1.5rem;
        }

        .p-area-group-title {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
            color: white;
            padding: 0.75rem 1rem;
            border-radius: 8px 8px 0 0;
            font-weight: 600;
            font-size: 0.9rem;
            text-align: center;
        }

        .p-area-list {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 0 0 8px 8px;
            border: 1px solid #e9ecef;
            border-top: none;
        }

        .p-area-list p {
            color: #666;
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
        }

        .p-area-list p:before {
            content: '•';
            color: #ff6b35;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* CTA Section */
        .p-cta-section {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
            color: white;
            padding: 2.5rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .p-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .p-cta-content {
            position: relative;
            z-index: 1;
        }

        .p-cta-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .p-cta-description {
            font-size: 1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .p-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 320px;
            margin: 0 auto;
        }

        .p-cta-btn {
            padding: 1.25rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .p-cta-btn.primary {
            background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
            color: white;
            box-shadow: 0 4px 16px rgba(255,107,53,0.3);
        }

        .p-cta-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,107,53,0.4);
        }

        .p-cta-btn.secondary {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .p-cta-btn.secondary:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.5);
        }

        /* CLS Prevention */
        .p-service-item,
        .p-benefit-card,
        .p-area-group {
            contain: layout;
        }

        img {
            height: auto;
            max-width: 100%;
        }
}
        /* Responsive */
        @media (max-width: 320px) {
            .p-header h1 {
                font-size: 1.6rem;
            }
            
            .p-section-title {
                font-size: 1.3rem;
            }
            
            .p-service-item,
            .p-benefit-card {
                padding: 1rem;
            }
        }