.elementor-1207 .elementor-element.elementor-element-fd48e76{--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-1207 .elementor-element.elementor-element-fd48e76:not(.elementor-motion-effects-element-type-background), .elementor-1207 .elementor-element.elementor-element-fd48e76 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-0c14b08 );}@media(min-width:768px){.elementor-1207 .elementor-element.elementor-element-fd48e76{--width:80%;}}/* Start custom CSS for html, class: .elementor-element-4bec825 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

:root {
    --brand-blue: #6EC1E4;
    --brand-lime: #B6FF67;
    --brand-orange: #FF6B00;
    --brand-gray: #7A7A7A;
    --brand-green: #61CE70;
    --text-dark: #222222;
    --white: #ffffff;
}

/* Reset and Typography */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: #fcfcfc;
    line-height: 1.8;
}

.container {
    max-width: 1200px; /* Even wider for that modern 'Open' feel */
    margin: 40px auto;
    padding: 60px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

/* Big, Bold Brand Headers */
h1 {
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--text-dark);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 40px;
    border-left: 12px solid var(--brand-orange); /* Your orange as a statement */
    padding-left: 30px;
}

h2 {
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--brand-blue);
    margin-top: 60px;
    border-bottom: 4px solid var(--brand-lime);
    display: inline-block;
    padding-bottom: 5px;
}

/* Tool Cards with Brand Gradients */
.tool-card {
    border: 1px solid #eee;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tool-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-blue);
    box-shadow: 0 20px 40px rgba(110, 193, 228, 0.2);
}

.tool-card h4 {
    color: var(--brand-orange);
    font-size: 1.6rem;
    font-weight: 700;
}

/* High-Contrast Stat Box */
.stat-box {
    background: var(--brand-blue); /* Using your primary blue */
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    border-radius: 25px;
    margin: 50px 0;
    text-align: center;
}

.stat-box strong {
    font-size: 2.5rem;
    display: block;
    color: var(--brand-lime); /* Lime text on blue background is very modern 2026 */
}

/* Checklists with your Green */
.checklist li {
    background: #f9f9f9;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 15px 25px;
    border-left: 6px solid var(--brand-green);
    list-style: none;
}

/* Week Plan with Gradient Background */
.week-plan {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
    color: white;
    padding: 50px;
    border-radius: 30px;
}

.day-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    color: white;
}

/* Modern Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

table th {
    background-color: var(--brand-gray);
    color: white;
    padding: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

table td {
    background-color: #f8f8f8;
    padding: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .container { padding: 30px; width: 95%; }
    h1 { font-size: 2.5rem; }
    .stat-box { flex-direction: column; gap: 30px; }
}/* End custom CSS */