.elementor-24529 .elementor-element.elementor-element-47c4c5d{--display:flex;}.elementor-24529 .elementor-element.elementor-element-ea9a941 > .elementor-widget-container{margin:50px 50px 50px 50px;padding:80px 80px 80px 80px;}.elementor-24529 .elementor-element.elementor-element-ea9a941{text-align:justify;font-family:"Poppins", Sans-serif;font-size:20px;}.elementor-24529 .elementor-element.elementor-element-f1019bf{--display:flex;}@media(max-width:767px){.elementor-24529 .elementor-element.elementor-element-ea9a941 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:30px 30px 30px 30px;}}/* Start custom CSS for text-editor, class: .elementor-element-ea9a941 *//* GLOBAL RESET & TYPOGRAPHY */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9fafb; /* Very light grey background to make the white pop */
    color: #333;
}

/* MAIN CONTAINER */
.pm-wrap {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1); /* Subtle red shadow */
    border-top: 6px solid #dc2626; /* Red accent top */
}

/* HEADINGS */
.pm-wrap h1 {
    color: #111;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.pm-wrap h3 {
    color: #dc2626; /* Red headings */
    font-weight: 700;
    margin-top: 0;
}

/* HERO SECTION */
.pm-hero {
    background: #fff1f2; /* Lightest red tint */
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.pm-hero p {
    color: #4b5563;
    font-size: 1.05rem;
}

.pm-hero strong {
    color: #dc2626;
}

/* BADGES (PILL SHAPE) */
.pm-badges {
    margin-top: 15px;
}

.pm-badges span {
    display: inline-block;
    background: #dc2626;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 4px 6px 4px 0;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

/* GRID LAYOUT */
.pm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* CARDS */
.pm-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pm-card:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* CUSTOM LISTS */
.pm-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pm-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #374151;
}

/* Custom Red Checkmark/Bullet */
.pm-card li::before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -6px;
    line-height: 1;
}

/* STEP SECTION */
.pm-step {
    background: #dc2626; /* Solid Red Background */
    color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    font-size: 1rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.pm-step strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CALL TO ACTION (CTA) */
.pm-cta {
    background: #fff;
    border: 2px dashed #dc2626; /* Dashed border for visual interest */
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
}

.pm-cta h3 {
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 8px;
}

.pm-cta p {
    color: #666;
    margin-bottom: 20px;
}

/* BUTTON */
.pm-cta a {
    display: inline-block;
    background-color: #dc2626;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.pm-cta a:hover {
    background-color: #b91c1c; /* Darker red on hover */
    transform: scale(1.02);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .pm-wrap { padding: 20px; margin: 10px; }
    .pm-hero h1 { font-size: 1.5rem; }
}/* End custom CSS */