.elementor-2596 .elementor-element.elementor-element-e67a95f{--display:flex;}.elementor-2596 .elementor-element.elementor-element-2518fc9 > .elementor-widget-container{margin:80px 0px 0px 0px;}.elementor-2596 .elementor-element.elementor-element-2518fc9.elementor-element{--align-self:center;}.elementor-2596 .elementor-element.elementor-element-2518fc9{text-align:center;}.elementor-2596 .elementor-element.elementor-element-2518fc9 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:42px;font-weight:700;line-height:21px;color:#000000;}.elementor-2596 .elementor-element.elementor-element-e6b2c87 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-2596 .elementor-element.elementor-element-e6b2c87.elementor-element{--align-self:center;}.elementor-2596 .elementor-element.elementor-element-e6b2c87{text-align:center;}.elementor-2596 .elementor-element.elementor-element-e6b2c87 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:24px;font-weight:400;line-height:41px;color:#000000;}.elementor-2596 .elementor-element.elementor-element-bac4b79{--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;}.elementor-2596 .elementor-element.elementor-element-bac4b79:not(.elementor-motion-effects-element-type-background), .elementor-2596 .elementor-element.elementor-element-bac4b79 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FAFAFA;}/* Start custom CSS for html, class: .elementor-element-f1c0faf *//* --- 1. CORE LAYOUT AND RESPONSIVENESS (Mobile First) --- */
.membership-cards-container {
    display: flex;
    flex-direction: column; /* Stacks cards vertically on mobile */
    gap: 30px; /* Space between cards */
    padding: 20px 0;
}

.plan-card {
    /* Card Styling */
    flex: 1 1 100%; /* Take full width on mobile */
    background-color: #ffffff;
    border: 1px solid #E6F5F5; /* Light subtle border */
    border-radius: 18px; /* Rounded corners */
    overflow: hidden; /* Important for header border-radius */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    display: flex; /* Makes content stretch to bottom for button alignment */
    flex-direction: column;
}

/* Desktop View: Side-by-Side */
@media (min-width: 768px) {
    .membership-cards-container {
        flex-direction: row; /* Arranges cards side-by-side on desktop */
    }
    .plan-card {
        flex: 1 1 48%; /* Ensures two columns */
        min-width: 0;
    }
}

/* --- 2. HEADER STYLING --- */
.card-header {
    background-color: #E6F5F5; /* Light Mint/Teal background */
    text-align: center;
    padding: 30px 20px 15px 20px;
}

.plan-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #1A3A3A; /* Dark text */
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.plan-subtitle {
    font-size: 0.9em;
    color: #4D7E7E;
    margin: 0 0 15px 0;
}

.plan-contact {
    font-size: 2.5em;
    font-weight: 800;
    color: #22C3C3; /* Prominent Teal color */
    margin: 0;
    line-height: 1;
}

.plan-details {
    font-size: 0.8em;
    color: #6A9999;
    margin: 0;
    padding-bottom: 5px;
}

/* --- 3. BODY/FEATURE LIST STYLING --- */
.card-body {
    padding: 20px 30px;
    flex-grow: 1; /* Pushes button to the bottom */
}

.service-heading {
    font-size: 1.1em;
    font-weight: 700;
    color: #1A3A3A;
    margin-top: 0;
    margin-bottom: 10px;
}

.discounted-heading {
    margin-top: 25px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-list li {
    font-size: 0.95em;
    color: #333333;
    padding: 5px 0;
    line-height: 1.4;
}

.service-list i {
    color: #008080; /* Teal icon color */
    margin-right: 8px;
    font-size: 1em;
}

.discount-text {
    font-size: 0.9em;
    color: #333333;
    margin: 0;
}

.discount-note {
    font-size: 0.75em;
    color: #777777;
    margin: 5px 0 0 0;
}

/* --- 4. BUTTON STYLING --- */
.plan-button {
    display: block;
    width: 90%;
    margin: 0 auto 30px auto; /* Centers and adds bottom margin */
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    color: #ffffff;
    background: #22C3C3; /* Gradient Teal */
    border-radius: 30px; /* Pill shape */
    transition: background-color 0.3s;
}

.plan-button:hover {
    background: #22C3C3;
    
}/* End custom CSS */