 {} *{} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } /* Global Resets & Basic Styling */ :root { --color-primary: #101828; --color-secondary: #475467; --color-accent: #f1cf90; --color-accent-dark: #1D9DD0; --color-text: #5A5A5A; --color-heading: #1E2132; --color-white: #FFFFFF; --color-light-bg: #FAFBFD; --font-primary: 'Arial', sans-serif; /* Placeholder, replace with actual primary font */ --font-secondary: 'Georgia', serif; /* Placeholder, replace with actual secondary font */ } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--font-primary); color: var(--color-text); line-height: 1.6; background-color: var(--color-light-bg); } h1, h2, h3, h4, h5, h6 { font-family: var(--font-secondary); color: var(--color-heading); margin-bottom: 0.75em; line-height: 1.3; } h1 { font-size: 2.8em; } h2 { font-size: 2.2em; } h3 { font-size: 1.8em; } h4 { font-size: 1.5em; } p { margin-bottom: 1em; } a { color: var(--color-accent-dark); text-decoration: none; } a:hover { text-decoration: underline; } img { max-width: 100%; height: auto; display: block; } .container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 20px 0; } .button { display: inline-block; padding: 12px 25px; border-radius: 7px; text-decoration: none; font-weight: bold; text-align: center; transition: background-color 0.3s ease; cursor: pointer; border: none; } .button--primary { background-color: #F44336; /* Original primary button color */ color: var(--color-white); } .button--primary:hover { background-color: #CE2D2D; /* Darker shade for hover */ } .button--secondary { background-color: #e0e0e0; /* Light gray */ color: var(--color-primary); border: 1px solid #ccc; } .button--secondary:hover { background-color: #d0d0d0; } .button--accent { background-color: var(--color-accent-dark); color: var(--color-white); } .button--accent:hover { background-color: #1782a8; } .button__icon { margin-right: 8px; vertical-align: middle; } .button__icon svg { width: 1em; height: 1em; fill: currentColor; } /* Header */ .site-header { background-color: #162132; /* Dark background from original */ padding: 10px 0; position: sticky; top: 0; z-index: 1000; display: none; /* Hidden on mobile by default as per original (elementor-hidden-mobile) */ } .site-header__inner { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; /* Wider container for header */ margin: 0 auto; padding: 0 20px; } .site-header__logo img { max-height: 50px; width: auto; } .site-header__nav { display: flex; align-items: center; } .site-header__nav-link { color: var(--color-white); margin-left: 20px; font-size: 0.9em; } .site-header__nav-link svg { width: 16px; height: 16px; fill: var(--color-white); margin-right: 5px; vertical-align: middle; } .site-header__cta-button { margin-left: 20px; font-size: 0.9em; padding: 8px 15px; } /* Hero Section */ .hero-section { background: linear-gradient(to bottom, #162132, #2c3e50); /* Example gradient */ color: var(--color-white); padding: 60px 20px; text-align: center; } .hero-section__title { font-size: 2.5em; margin-bottom: 0.5em; color: var(--color-white); } .hero-section__title .highlight { color: var(--color-accent); } .hero-section__subtitle { font-size: 1.5em; margin-bottom: 1.5em; font-weight: normal; } .hero-section__subtitle .animated-headline-text { border-bottom: 3px solid var(--color-accent); /* Simple underline for animated text */ padding-bottom: 2px; } .hero-section__cta-group { display: flex; justify-content: center; gap: 20px; /* Space between button groups */ margin-bottom: 30px; flex-wrap: wrap; /* Allow wrapping on smaller screens */ } .hero-section__cta-item { text-align: center; } .hero-section__cta-button { padding: 15px 30px; font-size: 1.1em; min-width: 200px; /* Ensure buttons have some width */ } .hero-section__cta-button svg { width: 1.2em; height: 1.2em; } .hero-section__cta-note { font-size: 0.9em; margin-top: 5px; opacity: 0.8; } .hero-section__image-container { margin: 40px auto; max-width: 700px; } .hero-section__features { background-color: rgba(0,0,0,0.2); padding: 30px 20px; border-radius: 10px; margin-top: 40px; } .hero-section__features-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; text-align: left; } .hero-section__feature-item { display: flex; align-items: center; font-size: 1.1em; } .hero-section__feature-item svg { width: 24px; height: 24px; fill: var(--color-accent); margin-right: 10px; flex-shrink: 0; } /* Scroll Down Arrow */ .scroll-down-arrow { margin: 40px auto 0; width: 70px; height: 70px; border: 5px solid var(--color-white); color: var(--color-white); background: var(--color-primary); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 24px; /* Adjust icon size */ } .scroll-down-arrow svg { width: 1em; height: 1em; fill: currentColor; animation: bounce-arrow 2s ease infinite; } @keyframes bounce-arrow { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-8px); } 60% { transform: translateY(-4px); } } /* Testimonials Section */ .testimonials-section { padding: 50px 20px; background-color: var(--color-white); } .testimonials-section__title { text-align: center; margin-bottom: 40px; } .testimonials-section__title .animated-headline-text { border-bottom: 3px solid var(--color-accent-dark); padding-bottom: 2px; } .testimonials-grid { display: grid; grid-template-columns: 1fr; /* Single column on mobile */ gap: 30px; } .testimonial-card { background-color: #f9f9f9; /* Light gray for card background */ border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .testimonial-card__video-wrapper { margin-bottom: 20px; position: relative; padding-bottom: 56.25%; /* 16:9 aspect ratio */ height: 0; overflow: hidden; border-radius: 5px; } .testimonial-card__video-wrapper iframe, .testimonial-card__video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .testimonial-card__author-box { display: flex; align-items: center; gap: 15px; margin-top: 15px; /* Space after video */ margin-bottom: 15px; /* Space before quote */ } .testimonial-card__author-image img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; } .testimonial-card__author-info { display: flex; flex-direction: column; } .testimonial-card__author-name { font-weight: bold; color: var(--color-heading); margin-bottom: 0; } .testimonial-card__author-title { font-size: 0.9em; color: var(--color-secondary); } .testimonial-card__quote { font-style: italic; color: var(--color-text); border-left: 3px solid var(--color-accent-dark); padding-left: 15px; margin: 0; /* Removed default p margin */ } .testimonial-card__divider { height: 1px; background-color: #e0e0e0; margin: 20px 0; } /* CTA Bonuses Section */ .cta-bonuses-section { background-color: var(--color-primary); color: var(--color-white); padding: 50px 20px; text-align: center; } .cta-bonuses-section__title { color: var(--color-white); margin-bottom: 10px; } .cta-bonuses-section__book-image { max-width: 350px; margin: 20px auto; } .cta-bonuses-section__subtitle { font-size: 1.3em; color: var(--color-accent); margin-bottom: 30px; } .bonuses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-bottom: 40px; text-align: left; } .bonus-item { background-color: rgba(255,255,255,0.1); padding: 20px; border-radius: 8px; } .bonus-item__image img { border-radius: 5px; margin-bottom: 15px; } .bonus-item__title { font-size: 1.2em; color: var(--color-accent); margin-bottom: 8px; } .bonus-item__description { font-size: 0.95em; opacity: 0.9; } .cta-bonuses-section__arrow-image { max-width: 100px; margin: 0 auto 20px auto; /* Centered with space */ } .cta-bonuses-section__payment-icons img { max-width: 250px; /* Adjust as needed */ margin: 20px auto 0; } /* About PPP Section (and similar content sections) */ .content-section { padding: 50px 20px; } .content-section--dark { background-color: var(--color-primary); color: var(--color-white); } .content-section--dark h1, .content-section--dark h2, .content-section--dark h3 { color: var(--color-white); } .content-section__title { text-align: center; margin-bottom: 40px; } .content-section__title .animated-headline-text { border-bottom: 3px solid var(--color-accent-dark); padding-bottom: 2px; } .content-section__video-wrapper { margin: 30px auto; max-width: 800px; position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0; } .content-section__video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; } .content-section__video-caption { text-align: center; font-size: 0.9em; margin-top: 5px; color: var(--color-secondary); } .myth-section__big-lie { background-color: var(--color-accent-dark); color: var(--color-white); padding: 5px 10px; display: inline-block; transform: rotate(-10deg); font-weight: bold; margin: 10px 0 30px 20px; /* Approximate positioning */ font-size: 1.5em; } .skills-showcase { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around; /* Center items with space */ gap: 20px; margin: 30px 0; } .skills-showcase__list { list-style: none; padding: 0; flex-basis: 200px; /* Give some base width to lists */ flex-grow: 1; } .skills-showcase__list li { margin-bottom: 10px; display: flex; align-items: center; } .skills-showcase__list svg { /* For checkmark icons */ width: 20px; height: 20px; fill: var(--color-accent-dark); margin-right: 8px; } .skills-showcase__image { max-width: 250px; /* Adjust as needed */ flex-shrink: 0; /* Prevent image from shrinking too much */ } .myth-item { display: flex; gap: 15px; align-items: flex-start; /* Align items to the top */ margin-bottom: 20px; padding: 15px; background-color: #f9f9f9; border-radius: 5px; } .myth-item__label { background-color: var(--color-accent-dark); color: var(--color-white); padding: 8px 12px; border-radius: 5px; font-weight: bold; font-size: 0.9em; white-space: nowrap; /* Prevent "myth #1" from wrapping */ } .myth-item__text { flex-grow: 1; } /* Author Intro & As Seen On */ .author-intro { display: flex; flex-direction: column; /* Stack on mobile */ align-items: center; gap: 30px; margin-bottom: 40px; } .author-intro__image img { width: 200px; /* Adjust size */ height: 200px; border-radius: 50%; object-fit: cover; box-shadow: 0 4px 10px rgba(0,0,0,0.15); } .author-intro__bio { flex: 1; text-align: center; /* Center text on mobile */ } .as-seen-on { text-align: center; padding: 30px 0; background-color: #f0f0f0; /* Light gray background */ } .as-seen-on__title { margin-bottom: 25px; font-size: 1.2em; color: var(--color-secondary); text-transform: uppercase; letter-spacing: 1px; } .as-seen-on__logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 30px; /* Space between logos */ } .as-seen-on__logo img { max-height: 40px; /* Adjust logo height */ width: auto; opacity: 0.7; transition: opacity 0.3s ease; } .as-seen-on__logo img:hover { opacity: 1; } /* How it Works / Old vs New */ .diagram-image { max-width: 500px; margin: 30px auto; } .comparison-image { max-width: 700px; margin: 30px auto; border: 1px solid #ddd; box-shadow: 0 2px 8px rgba(0,0,0,0.1); } .book-stats { display: flex; justify-content: space-around; text-align: center; background-color: #f0f0f0; padding: 30px 15px; border-radius: 8px; margin: 40px 0; flex-wrap: wrap; /* Allow wrapping on smaller screens */ } .book-stats__item { margin: 10px; /* Add some margin for wrapped items */ } .book-stats__item h3 { font-size: 1.5em; color: var(--color-accent-dark); margin-bottom: 5px; } .book-stats__item p { font-size: 0.95em; color: var(--color-secondary); margin-bottom: 0; } /* Book Details and Benefits List */ .book-details { display: flex; flex-direction: column; /* Mobile first */ gap: 30px; align-items: center; margin: 30px 0; } .book-details__image img { max-width: 350px; /* Adjust as needed */ border-radius: 5px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .book-details__benefits-list { list-style: none; padding: 0; flex: 1; } .book-details__benefits-list li { margin-bottom: 12px; display: flex; align-items: flex-start; /* Align icon with first line of text */ } .book-details__benefits-list svg { width: 20px; height: 20px; fill: var(--color-accent-dark); margin-right: 10px; margin-top: 3px; /* Align better with text */ flex-shrink: 0; } /* Guarantee Section */ .guarantee-box { background-color: #f0f0f0; padding: 25px; border-radius: 8px; text-align: center; margin-top: 30px; border: 2px dashed var(--color-accent-dark); } .guarantee-box img { max-width: 75px; margin: 0 auto 10px; } .guarantee-box h6 { font-size: 1.1em; color: var(--color-heading); margin: 0; } /* Disclaimer Section */ .disclaimer-box { background-color: #fffbe6; /* Light yellow */ border: 1px solid #ffe58f; padding: 20px; border-radius: 5px; font-size: 0.9em; margin: 30px 0; } .disclaimer-box .highlight { background-color: #ffe58f; padding: 2px 4px; border-radius: 3px; font-weight: bold; } /* Image Grids / Galleries */ .image-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); /* Responsive grid */ gap: 10px; margin: 30px 0; } .image-gallery__item img { width: 100%; height: 100%; object-fit: cover; border-radius: 5px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); } .tiled-gallery { /* Simplified tiled gallery */ display: grid; gap: 10px; margin: 30px 0; grid-template-columns: repeat(2, 1fr); /* Default 2 columns */ } .tiled-gallery__item { overflow: hidden; /* Ensure images fit */ border-radius: 5px; } .tiled-gallery__item img { width: 100%; height: 100%; object-fit: cover; } /* Example for a specific tiled layout */ .tiled-gallery--layout1 .tiled-gallery__item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; } /* Taller first image */ .tiled-gallery--layout1 .tiled-gallery__item:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 4; } /* Footer */ .site-footer { background-color: var(--color-primary); color: #a0a0a0; /* Lighter text for footer */ padding: 40px 20px; font-size: 0.9em; } .site-footer__main { display: flex; flex-direction: column; /* Stack on mobile */ justify-content: space-between; align-items: center; /* Center on mobile */ gap: 30px; margin-bottom: 30px; text-align: center; /* Center text on mobile */ } .site-footer__logo-copyright img { max-height: 40px; margin-bottom: 10px; } .site-footer__payment-guarantee { display: flex; flex-direction: column; align-items: center; } .site-footer__payment-icons img { max-width: 200px; margin-bottom: 10px; } .site-footer__guarantee { display: flex; align-items: center; gap: 8px; } .site-footer__guarantee img { max-width: 50px; } .site-footer__disclaimer h4 { font-size: 0.8em; color: #777; line-height: 1.5; max-width: 800px; /* Limit width for readability */ margin: 0 auto 20px; } .site-footer__legal-links { text-align: center; } .site-footer__legal-links a { color: #a0a0a0; margin: 0 10px; font-size: 0.85em; } .site-footer__bottom-text { text-align: center; margin-top: 20px; font-size: 0.8em; border-top: 1px solid #444; padding-top: 20px; } /* Icon list generic styling */ .icon-list { list-style: none; padding: 0; } .icon-list__item { display: flex; align-items: flex-start; margin-bottom: 0.8em; font-size: 1.05em; } .icon-list__item svg { width: 22px; height: 22px; fill: var(--color-accent-dark); margin-right: 12px; margin-top: 2px; flex-shrink: 0; } .icon-list__item--negative svg { fill: #c0392b; /* Red for negative/cross icons */ } .icon-list__item-subtext { display: block; font-size: 0.85em; color: #cc0000; /* Red as in original */ margin-top: 4px; } /* Responsive adjustments */ @media (min-width: 768px) { .site-header { display: flex; } /* Show header on tablet and up */ h1 { font-size: 3.2em; } h2 { font-size: 2.5em; } h3 { font-size: 2em; } .hero-section { padding: 80px 20px; } .hero-section__title { font-size: 3em; } .hero-section__subtitle { font-size: 1.8em; } .testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* More flexible grid for larger screens */ } .testimonial-card { display: flex; flex-direction: column; } .testimonial-card__content-wrapper { /* For testimonials with image on side and text */ display: flex; gap: 20px; align-items: flex-start; } .testimonial-card__author-box { /* Override if using with content-wrapper for side by side author info */ flex-direction: row; align-items: center; margin-top:0; margin-bottom: 0; } .author-intro { flex-direction: row; /* Side by side on larger screens */ text-align: left; /* Align text to left */ } .author-intro__bio { text-align: left; } .skills-showcase { justify-content: space-between; } /* Better spacing on larger screens */ .skills-showcase__list { flex-basis: auto; } /* Reset basis for more natural flow */ .book-details { flex-direction: row; align-items: flex-start; } .content-columns { /* Generic two-column layout */ display: flex; gap: 30px; align-items: flex-start; /* Align items to top by default */ } .content-columns__column { flex: 1; } .content-columns__column--center-items { /* Modifier to center items in a column */ display: flex; flex-direction: column; align-items: center; } .site-footer__main { flex-direction: row; /* Side by side on larger screens */ align-items: flex-start; /* Align items to top */ text-align: left; /* Align text to left */ } .site-footer__logo-copyright, .site-footer__payment-guarantee { align-items: flex-start; } .tiled-gallery { grid-template-columns: repeat(4, 1fr); /* Default 4 columns for desktop */ } }
