/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Lazy Loading Styles */
.lazy, .lazy-bg {
    opacity: 0;
    transition: opacity 0.4s ease-in;
}

.lazy-loaded, .fade-in {
    opacity: 1;
}

.lazy-placeholder {
    background-color: #f0f0f0;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Base Styles */
:root {
    --primary-color: #4a6cf7;
    --secondary-color: #f45905;
    --accent-color: #12c2e9;
    --dark-color: #171717;
    --light-color: #f5f5f5;
    --success-color: #28a745;
    --grey-color: #718096;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 95%;
    max-width: 1216px;
    margin: 0px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo img {
    max-height: 46px;
    width: auto;
    margin-bottom: -0.5em;
}

@media (max-width: 768px) {
    .logo img {
        max-height: 36px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #3a5bd9;
    color: #fff;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.btn-view-details {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 15px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view-details:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Navigation */
.header {
    background-color: #fff;
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    width: 25%;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--primary-color);
}

.logo span {
    color: var(--primary-color);
}

.logo .logo-wrapper{
    margin: 0 auto;
    padding: 10px 10px 0 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

.nav-menu li a:hover, .nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #4a6cf7, #12c2e9);
    padding: 120px 0;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* About Section */
.about {
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--grey-color);
    font-size: 18px;
    margin-top: 15px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 16px;
}

.about-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 130px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-text {
    color: var(--grey-color);
    font-size: 14px;
}

/* Business Ideas Section */
.business-ideas {
    background-color: #f8f9fa;
}

.ideas-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-color);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.idea-card {
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 25px;
    position: relative;
}

.idea-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.idea-revenue {
    position: absolute;
    top: 14px;
    right: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
}

.idea-revenue span {
    font-size: 12px;
    font-weight: 400;
}

.idea-card h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.idea-card p {
    color: var(--grey-color);
    font-size: 15px;
    margin-bottom: 20px;
    min-height: 90px;
}

.idea-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.idea-category {
    background-color: rgba(74, 108, 247, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: var(--radius);
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--grey-color);
    cursor: pointer;
}

.close-modal:hover {
    color: var(--dark-color);
}

/* Monetization Section */
.monetization {
    background-color: #fff;
}

.monetization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.monetization-card {
    background-color: #f8f9fa;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.monetization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.monetization-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.monetization-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.monetization-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.monetization-card p {
    color: var(--grey-color);
    margin-bottom: 15px;
}

.monetization-card ul {
    padding-left: 20px;
}

.monetization-card ul li {
    list-style-type: disc;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 14px;
}

/* Scott Max Method Section */
.winning-method {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.winning-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

.method-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.method-card {
    background-color: #f8f9fa;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.method-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(74, 108, 247, 0.1);
    line-height: 1;
}

.method-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.method-card p {
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--grey-color);
}

.method-card ul {
    padding-left: 20px;
}

.method-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
    list-style-type: disc;
}

.monetization-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

/* Implementation Section */
.implementation {
    background-color: #f8f9fa;
}

/* Critical Analysis Section */
.critical-analysis {
    background-color: #fff;
}

.analysis-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.analysis-card {
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.analysis-card:nth-child(1) {
    background-color: rgba(40, 167, 69, 0.1);
}

.analysis-card:nth-child(2) {
    background-color: rgba(255, 193, 7, 0.1);
}

.analysis-card h3 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.analysis-card:nth-child(1) h3 {
    color: #28a745;
}

.analysis-card:nth-child(2) h3 {
    color: #fd7e14;
}

.analysis-card h3 i {
    margin-right: 10px;
}

.analysis-card ul {
    padding-left: 20px;
}

.analysis-card ul li {
    margin-bottom: 12px;
    font-size: 15px;
}

.analysis-conclusion {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

.analysis-conclusion h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.analysis-conclusion p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.7;
}

.implementation-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin-right: 25px;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    padding: 0 0 0 10px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--grey-color);
    margin-bottom: 15px;
}

.step-content ul {
    padding-left: 20px;
}

.step-content ul li {
    list-style-type: disc;
    margin-bottom: 5px;
    font-size: 15px;
}

.step::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: #e0e0e0;
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

/* Monetize Website Section */
.monetize-website {
    background-color: #f8f9fa;
}

.monetize-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.monetize-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.monetize-card {
    background-color: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.monetize-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.monetize-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.monetize-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.monetize-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.monetize-card p {
    color: var(--grey-color);
    margin-bottom: 20px;
    font-size: 15px;
}

.implementation-steps {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: var(--radius);
    border-left: 3px solid var(--primary-color);
}

.implementation-steps strong {
    display: block;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.implementation-steps ol {
    padding-left: 20px;
}

.implementation-steps ol li {
    margin-bottom: 8px;
    font-size: 14px;
}

.monetize-summary {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.monetize-summary h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.monetize-summary ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.monetize-summary ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.monetize-summary p {
    font-style: italic;
    font-size: 15px;
}

/* Resources Section */
.resources {
    background-color: #fff;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.resource-card {
    background-color: #f8f9fa;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.resource-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.resource-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.resource-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.resource-card ul li a {
    display: inline-block;
    color: var(--grey-color);
    transition: var(--transition);
}

.resource-card ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.resources-disclaimer {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: var(--grey-color);
    padding: 15px;
    border-radius: var(--radius);
    background-color: #f8f9fa;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(to right, #4a6cf7, #12c2e9);
    color: #fff;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    padding: 120px 0 80px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 15px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.newsletter-form input.error {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.newsletter-form input.success {
    border-color: #27ae60;
    background-color: #f5fff8;
}

.form-group {
    margin-bottom: 15px;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    animation: slideIn 0.3s ease;
}

.success-message {
    text-align: center;
    color: #27ae60;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.success-message i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Loading animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-primary.loading .loading-spinner {
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.privacy-note {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 15px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo a {
    display: block;
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .step::after {
        left: 25px;
        top: 50px;
        height: calc(100% - 65px);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .ideas-grid, .monetization-grid, .resources-grid {
        grid-template-columns: 1fr;
    }
}

/* Cookie Consent Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    color: var(--grey-color);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept-btn {
    background-color: var(--primary-color);
    color: #fff;
}

.cookie-accept-btn:hover {
    background-color: #3a5bd9;
}

.cookie-reject-btn {
    background-color: #fff;
    color: var(--grey-color);
    border: 1px solid #e0e0e0;
}

.cookie-reject-btn:hover {
    background-color: #f5f5f5;
}

.cookie-settings-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cookie-settings-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Lazy Loading Styles */
.lazy, .lazy-bg {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy-loaded {
    opacity: 1;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Placeholder for lazy images */
img.lazy {
    min-height: 100px;
    background-color: #f0f0f0;
    background-image: 
        linear-gradient(90deg, #f0f0f0 0px, #e0e0e0 40px, #f0f0f0 80px);
    background-size: 250px;
    animation: shimmer 1.2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -250px 0;
    }
    100% {
        background-position: 250px 0;
    }
}

/* Lazy loading for background images */
.lazy-bg {
    background-color: #f0f0f0;
    background-image: none !important;
}

/* Heavy content lazy loading */
.lazy-content {
    min-height: 200px;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    position: relative;
}

.lazy-content::after {
    /*content: 'Loading...';*/
    font-size: 14px;
    color: #666;
}

.content-loaded::after {
    display: none;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: #fff;
    border-radius: var(--radius);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 20px;
}

.cookie-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.cookie-category-info p {
    margin: 0;
    font-size: 14px;
    color: var(--grey-color);
}

/* Cookie Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-slider.required {
    background-color: var(--primary-color);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-privacy-link {
    margin-top: 20px;
    text-align: center;
}

.cookie-privacy-link a {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 14px;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-save-btn {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cookie-save-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Mobile Responsiveness for Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-bottom: 15px;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
}

