 .container {
            max-width: 1280px;
            margin: 40px auto;
            background: white;
            border-radius: 32px;
           
            overflow: hidden;
        }
        /* Header & Branding Section */
        .brand-header {
         
            color: rgb(20, 20, 20);
            padding: 30px 40px;
        }
        .brand-header h1 {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            margin-bottom: 10px;
        }
        .brand-header p {
            font-size: 1rem;
            opacity: 0.9;
        }
        .contact-strip {
            background: #eef2f5;
            padding: 15px 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            border-bottom: 1px solid #dce4ec;
            font-size: 0.95rem;
        }
        .contact-strip div {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #1e4663;
            font-weight: 500;
        }
        .contact-strip i.emoji {
            font-size: 1.3rem;
        }
        /* Main Content Area */
        .content-main {
            padding: 40px;
        }
        /* SEO Description Sections */
        .seo-description {
            margin-bottom: 45px;
        }
        .seo-description h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #1a4a5f;
            border-left: 5px solid #e67e22;
            padding-left: 18px;
        }
        .seo-description h3 {
            font-size: 1.4rem;
            margin: 25px 0 12px 0;
            color: #2c5a72;
        }
        .seo-description p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .highlight-product {
            background: #fef7e0;
            padding: 20px 28px;
            border-radius: 24px;
            margin: 30px 0;
            border-left: 8px solid #e67e22;
            transition: all 0.2s ease;
        }
        .highlight-product strong {
            color: #c2410c;
        }
        .highlight-product a {
            color: #1a4a5f;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 2px solid #e67e22;
            transition: 0.2s;
        }
        .highlight-product a:hover {
            color: #e67e22;
            border-bottom-color: #1a4a5f;
        }
        .btn-inline {
            display: inline-block;
            background: #e67e22;
            color: white;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-left: 12px;
            text-decoration: none;
        }
        .product-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 35px 0;
        }
        .product-card {
            background: #f9fafc;
            padding: 20px;
            border-radius: 24px;
            flex: 1 1 250px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            transition: transform 0.2s;
            border: 1px solid #e9edf2;
        }
        .product-card:hover {
            transform: translateY(-4px);
            border-color: #e67e22;
        }
        .product-card h4 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #1e4663;
        }
        .footer-note {
            margin-top: 45px;
            padding-top: 25px;
            border-top: 1px solid #e2e8f0;
            font-size: 0.85rem;
            color: #4a627a;
            text-align: center;
        }
        @media (max-width: 700px) {
            .content-main {
                padding: 25px;
            }
            .brand-header h1 {
                font-size: 1.6rem;
            }
            .contact-strip {
                flex-direction: column;
                align-items: flex-start;
            }
        }