<style>
/* CSS RESET & CORE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.placidaBodyMain {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #020c1b;
    color: #ffe4e6;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
.headerWrapperPlacida {
    background-color: rgba(10, 25, 47, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #3f1d2e;
}

.headerContainerInner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logoTextBrandPlacida {
    font-size: 28px;
    font-weight: 700;
    color: #00d2ff;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.navigationMenuPlacida .navLinksListPlacida {
    display: flex;
    list-style: none;
}

.navLinkItemPlacida {
    text-decoration: none;
    color: #ffe4e6;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navLinkItemPlacida:hover {
    color: #ec4899;
}

.burgerToggleInput {
    display: none;
}

.burgerIconLabel {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burgerIconLabel span {
    width: 25px;
    height: 3px;
    background-color: #00d2ff;
    margin: 2px 0;
}

/* PATTERN STRIPE */
.patternStripeDivider {
    height: 10px;
    background-image: radial-gradient(#ec4899 1px, transparent 1px);
    background-size: 10px 10px;
    background-color: #020c1b;
}

/* HERO SECTION */
.heroSectionPlacida {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.heroContentContainer {
    display: flex;
    align-items: center;
    gap: 40px;
}

.heroTextColumnPlacida {
    flex: 1;
}

.heroMainTitlePlacida {
    font-size: 48px;
    color: #f9a8d4;
    line-height: 1.2;
    margin-bottom: 20px;
}

.heroSubtextPlacida {
    font-size: 20px;
    color: #00d2ff;
    margin-bottom: 20px;
    font-weight: 600;
}

.heroDescriptionPlacida {
    margin-bottom: 30px;
    color: #d1d5db;
}

.heroStatsGridPlacida {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.statBoxItemPlacida {
    background: #0a192f;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #3f1d2e;
    text-align: center;
    flex: 1;
}

.statNumberPlacida {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #ec4899;
}

.statDescPlacida {
    font-size: 12px;
    color: #94a3b8;
}

.ctaButtonPlacida {
    display: inline-block;
    padding: 15px 40px;
    background-color: #00d2ff;
    color: #020c1b;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ctaButtonPlacida:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.7);
}

.heroImageColumnPlacida {
    flex: 1;
}

.heroMainImagePlacida {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* COMMON SECTION STYLES */
.sectionContainerPlacida {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.sectionTitlePlacida {
    font-size: 36px;
    color: #f9a8d4;
    margin-bottom: 30px;
    text-align: center;
}

.sectionIntroTextPlacida {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #d1d5db;
}

/* ACCORDION (FOR WHOM) */
.accordionContainerPlacida {
    max-width: 800px;
    margin: 0 auto;
}

.accordionItemPlacida {
    background: #0a192f;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #3f1d2e;
    overflow: hidden;
}

.accordionHeaderPlacida {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #00d2ff;
    list-style: none;
    position: relative;
}

.accordionHeaderPlacida::after {
    content: '+';
    position: absolute;
    right: 20px;
}

.accordionItemPlacida[open] .accordionHeaderPlacida::after {
    content: '-';
}

.accordionContentPlacida {
    padding: 0 20px 20px;
    color: #ffe4e6;
}

/* EXPERT WORD */
.expertWordSectionPlacida {
    background-color: #0a192f;
}

.expertContainerPlacida {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 20px;
}

.expertQuoteColumnPlacida {
    flex: 1.5;
}

.decorativeQuoteLinePlacida {
    width: 60px;
    height: 4px;
    background: #ec4899;
    margin-bottom: 20px;
}

.expertQuoteTextPlacida {
    font-size: 28px;
    font-style: italic;
    color: #ffe4e6;
    margin-bottom: 30px;
}

.expertSignatureNamePlacida {
    font-weight: bold;
    font-size: 22px;
    color: #00d2ff;
}

.expertSignatureTitlePlacida {
    color: #94a3b8;
}

.expertPhotoColumnPlacida {
    flex: 1;
}

.expertImagePlacida {
    width: 100%;
    border-radius: 50% 50% 0 0;
    border: 5px solid #3f1d2e;
}

/* TIPS GRID */
.tipsGridPlacida {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tipCardItemPlacida {
    background: #020c1b;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #3f1d2e;
    transition: border-color 0.3s ease;
}

.tipCardItemPlacida:hover {
    border-color: #00d2ff;
}

.tipNumberPlacida {
    font-size: 40px;
    font-weight: bold;
    color: #ec4899;
    opacity: 0.3;
    margin-bottom: 10px;
}

.tipTitlePlacida {
    color: #00d2ff;
    margin-bottom: 15px;
}

/* RICH TEXT */
.richTextContentPlacida p {
    margin-bottom: 20px;
}

.richTextContentPlacida ul {
    margin: 20px 0 20px 40px;
    color: #f9a8d4;
}

/* REGULAR PRACTICE */
.practiceFlexContentPlacida {
    display: flex;
    align-items: center;
    gap: 50px;
}

.practiceTextColumnPlacida {
    flex: 1;
}

.practiceImageColumnPlacida {
    flex: 1;
}

.practiceSectionImagePlacida {
    width: 100%;
    border-radius: 15px;
}

.benefitsIconsListPlacida {
    list-style: none;
    margin-top: 30px;
}

.benefitIconItemPlacida {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.iconPlaceholderPlacida {
    background: #ec4899;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* PRICING TABLE */
.pricingTableWrapperPlacida {
    overflow-x: auto;
}

.pricingComparisonTablePlacida {
    width: 100%;
    border-collapse: collapse;
    background: #0a192f;
    border-radius: 15px;
    overflow: hidden;
}

.pricingComparisonTablePlacida th, .pricingComparisonTablePlacida td {
    padding: 20px;
    text-align: center;
    border: 1px solid #3f1d2e;
}

.pricingComparisonTablePlacida th {
    background-color: #3f1d2e;
    color: #00d2ff;
}

.buyButtonPlacida {
    display: inline-block;
    padding: 10px 20px;
    background: #ec4899;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

/* FAQ */
.faqAccordionPlacida {
    max-width: 900px;
    margin: 0 auto;
}

.faqDetailsPlacida {
    margin-bottom: 15px;
    border-bottom: 1px solid #3f1d2e;
}

.faqSummaryPlacida {
    padding: 15px 0;
    cursor: pointer;
    color: #f9a8d4;
    font-weight: 600;
}

.faqBodyPlacida {
    padding: 10px 0 20px;
}

/* CONTACT FORM */
.contactFormSectionPlacida {
    background-color: #0a192f;
}

.mainContactFormPlacida {
    max-width: 600px;
    margin: 0 auto;
    background: #020c1b;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #ec4899;
}

.formGroupPlacida {
    margin-bottom: 20px;
}

.formLabelPlacida {
    display: block;
    margin-bottom: 8px;
    color: #00d2ff;
}

.formInputPlacida, .formTextareaPlacida {
    width: 100%;
    padding: 12px;
    background: #0a192f;
    border: 1px solid #3f1d2e;
    color: white;
    border-radius: 8px;
}

.formTextareaPlacida {
    height: 120px;
    resize: none;
}

.formCheckboxGroupPlacida {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.formSubmitButtonPlacida {
    width: 100%;
    padding: 15px;
    background: #00d2ff;
    border: none;
    color: #020c1b;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.formDisclaimerPlacida {
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
    color: #94a3b8;
}

/* FOOTER */
.footerSectionPlacida {
    background-color: #020c1b;
    padding: 60px 20px;
    border-top: 1px solid #3f1d2e;
    text-align: center;
}

.footerLogoPlacida {
    font-size: 32px;
    font-weight: bold;
    color: #00d2ff;
    margin-bottom: 20px;
}

.footerLinksPlacida {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footerLinkItemPlacida {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
}

.footerLinkItemPlacida:hover {
    color: #ec4899;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .heroContentContainer, .expertContainerPlacida, .practiceFlexContentPlacida {
        flex-direction: column;
        text-align: center;
    }
    .heroStatsGridPlacida {
        justify-content: center;
    }
    .expertQuoteColumnPlacida {
        order: 2;
    }
    .expertPhotoColumnPlacida {
        order: 1;
        width: 60%;
    }
    .heroMainTitlePlacida {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .burgerIconLabel {
        display: flex;
    }
    .navigationMenuPlacida {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #0a192f;
        padding: 20px;
    }
    .burgerToggleInput:checked ~ .navigationMenuPlacida {
        display: block;
    }
    .navLinksListPlacida {
        flex-direction: column;
    }
    .navLinkItemPlacida {
        margin: 15px 0;
        display: block;
    }
}
</style>