.elementor-14 .elementor-element.elementor-element-a943f97{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-14 .elementor-element.elementor-element-a943f97{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-8ad5a6b */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        
        
        .page {
            position: relative;
            width: 100%;
            max-width: 210mm;
            min-height: 100vh;
            margin: 0 auto;
            background: white;
            padding: 20px 15px;
            overflow: hidden;
        }
        
        
        
        /* Decorative Pattern - Scaled for mobile */
        .page::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, transparent 30%, rgba(233, 32, 79, 0.03) 100%);
            border-radius: 50%;
            transform: translate(40%, -40%);
            z-index: 0;
        }
        
        .page::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, rgba(233, 32, 79, 0.02) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-30%, 30%);
            z-index: 0;
        }
        
        .content {
            position: relative;
            z-index: 1;
        }
        
        /* Header with Logo */
        .header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e9204f;
            
        }
        
       @media screen and (max-width: 767px) {
  .logo {
    width: 30vw;   /* 50% of viewport width */
    max-width: 30vw;
    height: auto;
    display: block;
    margin: 0;
    
  }
}

@media screen and (min-width: 1024px) {
  .logo {
    width: 20vw;      /* 30% of desktop viewport width */
    max-width: 20vw;
    height: auto;
    display: block;
    margin: 0;        /* Align left */
  }
  .header {
    justify-content: flex-start; /* Ensure left alignment within header */
  }
}

        
        /* Page Number */
        .page-number {
            position: relative;
            bottom: auto;
            right: auto;
            margin-top: 30px;
            font-size: 10px;
            color: #64748b;
            font-weight: 600;
            text-align: right;
        }
        
        .page-number::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 1px;
            background: #e9204f;
            margin-right: 8px;
            vertical-align: middle;
        }
        
        /* Cover Page */
        .cover-page {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            min-height: 90vh;
            padding: 20px 15px;
        }
        
        .cover-logo {
            height: 24px;
            width: auto;
            max-width: 150px;
            margin-bottom: 30px;
        }
        
        .cover-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
            color: #0f172a;
        }
        
        .cover-subtitle {
            font-size: 16px;
            color: #64748b;
            font-weight: 400;
            font-style: italic;
            margin-bottom: 40px;
        }
        
        .decorative-line {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #e9204f, transparent);
            margin: 30px auto;
        }
        
        .cover-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0.03;
            background-image: 
                repeating-linear-gradient(45deg, #e9204f 0, #e9204f 1px, transparent 0, transparent 50%),
                repeating-linear-gradient(-45deg, #e9204f 0, #e9204f 1px, transparent 0, transparent 50%);
            background-size: 15px 15px;
            z-index: 0;
        }
        
        /* Typography */
        h1 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #0f172a;
            position: relative;
            padding-left: 12px;
            border-left: 3px solid #e9204f;
        }
        
        h2 {
            font-size: 20px;
            font-weight: 700;
            margin-top: 25px;
            margin-bottom: 12px;
            color: #0f172a;
        }
        
        h3 {
            font-size: 16px;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 10px;
            color: #e9204f;
        }
        
        p {
            margin-bottom: 12px;
            font-size: 13px;
            color: #0f172a;
        }
        
        em {
            color: #64748b;
            font-style: italic;
        }
        
        strong {
            font-weight: 600;
            color: #0f172a;
        }
        
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
            margin: 20px 0;
        }
        
        /* Lists */
        ul {
            margin-left: 15px;
            margin-bottom: 15px;
        }
        
        li {
            margin-bottom: 6px;
            font-size: 13px;
            position: relative;
            padding-left: 8px;
        }
        
        li::before {
            content: '';
            position: absolute;
            left: -12px;
            top: 8px;
            width: 5px;
            height: 5px;
            background: #e9204f;
            border-radius: 50%;
        }
        
        /* Highlight Boxes */
        .highlight-box {
            background: #f8f9fa;
            border-left: 3px solid #e9204f;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 6px 6px 0;
        }
        
        .highlight-box h3 {
            margin-top: 0;
            color: #e9204f;
        }
        
        /* Section Divider */
        .section-number {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: #e9204f;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            font-weight: 700;
            margin-right: 12px;
            font-size: 16px;
            flex-shrink: 0;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            margin-top: 30px;
        }
        
        .section-title {
            font-size: 22px;
            font-weight: 700;
            color: #0f172a;
            margin: 0;
        }
        
        /* Problem Cards */
        .problem-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 15px;
            margin: 15px 0;
            box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
        }
        
        .problem-title {
            font-size: 14px;
            font-weight: 600;
            color: #e9204f;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Footer */
        .footer {
            position: relative;
            bottom: auto;
            left: auto;
            right: auto;
            margin-top: 30px;
            font-size: 10px;
            color: #64748b;
            text-align: center;
            padding-top: 10px;
            border-top: 1px solid #e2e8f0;
        }
        
        .footer-logo {
            height: 16px;
            margin-bottom: 5px;
        }
        
        /* Tablet Styles - 768px and up */
        @media screen and (min-width: 768px) {
            .page {
                padding: 30px 25px;
                min-height: 297mm;
            }
            
            .page::before {
                width: 250px;
                height: 250px;
            }
            
            .page::after {
                width: 200px;
                height: 200px;
            }
            
            .logo {
                height: 28px;
                max-width: 140px;
            }
            
            .cover-logo {
                height: 28px;
                max-width: 180px;
            }
            
            .cover-title {
                font-size: 38px;
            }
            
            .cover-subtitle {
                font-size: 18px;
            }
            
            .decorative-line {
                width: 90px;
            }
            
            .cover-pattern {
                background-size: 18px 18px;
            }
            
            h1 {
                font-size: 28px;
                padding-left: 14px;
                border-left-width: 3.5px;
            }
            
            h2 {
                font-size: 22px;
            }
            
            h3 {
                font-size: 17px;
            }
            
            p, li {
                font-size: 14px;
            }
            
            .section-number {
                width: 38px;
                height: 38px;
                line-height: 38px;
                font-size: 17px;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .problem-card {
                padding: 20px;
            }
            
            .problem-title {
                font-size: 15px;
            }
            
            .highlight-box {
                padding: 18px;
            }
            
            .page-number,
            .footer {
                font-size: 11px;
            }
            
            .footer-logo {
                height: 18px;
            }
        }
        
        /* Desktop Styles - 1024px and up */
        @media screen and (min-width: 1024px) {
            .page {
                width: 210mm;
                padding: 40mm 25mm 35mm;
                page-break-after: always;
            }
            
            .page::before {
                width: 300px;
                height: 300px;
            }
            
            .page::after {
                width: 250px;
                height: 250px;
            }
            
            .header {
                margin-bottom: 15mm;
                padding-bottom: 5mm;
            }
            
            .logo {
                height: 30px;
                max-width: 150px;
            }
            
            .page-number {
                position: absolute;
                bottom: 15mm;
                right: 25mm;
                margin-top: 0;
            }
            
            .page-number::before {
                width: 30px;
            }
            
            .cover-page {
                min-height: 240mm;
                padding-top: 0;
            }
            
            .cover-logo {
                height: 30px;
                max-width: 200px;
                margin-bottom: 40px;
            }
            
            .cover-title {
                font-size: 48px;
                margin-bottom: 20px;
            }
            
            .cover-subtitle {
                font-size: 22px;
                margin-bottom: 60px;
            }
            
            .decorative-line {
                width: 100px;
                margin: 40px auto;
            }
            
            .cover-pattern {
                background-size: 20px 20px;
            }
            
            h1 {
                font-size: 32px;
                padding-left: 15px;
                border-left-width: 4px;
                margin-bottom: 20px;
            }
            
            h2 {
                font-size: 24px;
                margin-top: 30px;
                margin-bottom: 15px;
            }
            
            h3 {
                font-size: 18px;
                margin-top: 25px;
                margin-bottom: 12px;
            }
            
            p {
                font-size: 14px;
                margin-bottom: 15px;
            }
            
            hr {
                margin: 30px 0;
            }
            
            ul {
                margin-left: 20px;
                margin-bottom: 20px;
            }
            
            li {
                font-size: 14px;
                margin-bottom: 8px;
                padding-left: 10px;
            }
            
            li::before {
                left: -15px;
                top: 9px;
                width: 6px;
                height: 6px;
            }
            
            .highlight-box {
                padding: 20px;
                margin: 25px 0;
                border-radius: 0 8px 8px 0;
                border-left-width: 4px;
            }
            
            .section-number {
                width: 40px;
                height: 40px;
                line-height: 40px;
                margin-right: 15px;
                font-size: 18px;
            }
            
            .section-header {
                margin-bottom: 25px;
                margin-top: 40px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .problem-card {
                padding: 25px;
                margin: 20px 0;
            }
            
            .problem-title {
                font-size: 16px;
            }
            
            .footer {
                position: absolute;
                bottom: 15mm;
                left: 25mm;
                right: 25mm;
                margin-top: 0;
            }
            
            .footer-logo {
                height: 20px;
            }
        }
        
        /* Print Styles */
        @media print {
            body {
                margin: 0;
                padding: 0;
            }
            .page {
                width: 210mm;
                min-height: 297mm;
                margin: 0;
                padding: 40mm 25mm 35mm;
                page-break-after: always;
            }
        }/* End custom CSS */