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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.4; /* Reduced line spacing */
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px; /* Reduced margin */
    color: #2a2a2a;
    letter-spacing: 0.5px; /* Improved letter spacing */
}

h1 {
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

h2 {
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background-color: #d63e3e;
    transform: scaleX(0.8);
}

a {
    text-decoration: none;
    color: #d63e3e;
}

a:hover {
    color: #a12929;
}

section {
    padding: 60px 0;
}

.cta-button {
    display: inline-block;
    background-color: #d63e3e;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 2px solid #d63e3e;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #a12929;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-color: #a12929;
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
.main-header {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #d63e3e;
}

/* Hero Section */
.hero {
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.2));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

/* Removing red line under NAVIGATE WITHOUT TECHNOLOGY */
.hero h1::after {
    display: none;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #d63e3e;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    display: inline-block;
    padding: 5px 0;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-left: 4px solid #d63e3e;
}

/* Benefits Section */
.benefits {
    background-color: #f9f9f9;
    text-align: center;
}

.benefits h2 {
    color: #d63e3e;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #d63e3e;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(214, 62, 62, 0.05), transparent);
    z-index: 0;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card i {
    color: #d63e3e;
    margin-bottom: 20px;
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px dashed rgba(214, 62, 62, 0.2);
}

.benefit-card p {
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background-color: #2a2a2a;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.testimonials h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    background-color: #3a3a3a;
    padding: 35px;
    border-radius: 10px;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    border-left: 5px solid #d63e3e;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 80px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(214, 62, 62, 0.2);
    z-index: 0;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #d63e3e;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    font-size: 1.05rem;
}

.testimonial h4 {
    color: #d63e3e;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.testimonial h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #d63e3e;
}

/* CTA Section */
.cta-section {
    background-color: #d63e3e;
    background-image: linear-gradient(135deg, #d63e3e, #a12929);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-section h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.cta-section h2::after {
    display: none; /* Remove underline from this heading */
}

.cta-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 5px;
    display: inline-block;
}

.cta-section .cta-button {
    background-color: white;
    color: #d63e3e;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    border: 2px solid white;
    padding: 18px 35px;
}

.cta-section .cta-button:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Features Section */
.features {
    text-align: center;
    background-color: #f9f9f9;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(214, 62, 62, 0.05) 0%, rgba(214, 62, 62, 0) 70%);
    z-index: -1;
}

.feature::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background-color: rgba(214, 62, 62, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.feature:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature i {
    color: #d63e3e;
    margin-bottom: 20px;
    font-size: 2.5rem;
    background-color: rgba(214, 62, 62, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1) rotate(10deg);
    background-color: rgba(214, 62, 62, 0.2);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 40%;
    height: 3px;
    background-color: #d63e3e;
}

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

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 5px solid white;
    position: relative;
    z-index: 1;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: rgba(214, 62, 62, 0.1);
    border-radius: 10px;
    z-index: 0;
    display: none; /* Temporarily hidden */
}

.about-text {
    flex: 2;
    min-width: 300px;
    position: relative;
}

.about-text h2 {
    color: #d63e3e;
    font-size: 2.4rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #d63e3e;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.about-text p:first-of-type {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    border-left: 3px solid #d63e3e;
    padding-left: 15px;
}

/* Footer Section */
footer {
    background-color: #1a1a1a;
    background-image: linear-gradient(to bottom, #1a1a1a, #252525);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #d63e3e, #a12929, #d63e3e);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-5px);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: white;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 2px;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #d63e3e;
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: #d63e3e;
    padding-left: 5px;
}

.footer-links ul li a:hover::after {
    width: 100%;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3a3a3a;
    color: white;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d63e3e;
    transform: scale(0);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
}

.footer-social a:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.footer-social a:hover::before {
    transform: scale(1);
}

.footer-disclaimer {
    border-top: 1px solid #3a3a3a;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #888;
    position: relative;
    z-index: 1;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

.footer-disclaimer a {
    color: #d63e3e;
    transition: all 0.3s;
    font-weight: 600;
}

.footer-disclaimer a:hover {
    color: white;
    text-decoration: underline;
}

.testimonials-name {
    display:flex;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1,  .affiliates-hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .footer-links ul li {
        margin-bottom: 0;
    }

    .bonus-box {
        flex-direction: column;        
    }
    .bonus-icon {
     margin-right: 0px !important;
    }
    .guarantee
    {
        flex-direction: column;
    }
    
    .guarantee h4 {
        display:flex !important;
        flex-direction: column;
    }

    .guarantee h4 span {
        display: flex !important;
        width:auto;
        max-width:90px;
        margin-right:0;
        align-self:center;
        margin-bottom:20px;
    }

    .guarantee-image {
        margin-right:0 !important;
    }
    .testimonials-name {
        width:100%;
        display:flex !important;
    }
    .testimonials-box {
        flex-direction: column;
    }
    .testimonials-badge {
        margin-left:0 !important;
        align-self: baseline;
        margin-top:10px;
    }
    .order-section-container h2 {
        margin-top:60px !important;
    }

    .order-section-container .order-button{
        width:100%;
        font-size:1.2rem !important;
        padding:15px 15px !important;
    }
    .logo {
        margin-bottom:10px;
    }
    .header-container {
        display:flex;
        flex-direction: column;
    }
    .price-table {
        font-size:14px;
    }
    .order-button {
        font-size:1.4rem !important;
    }
    .sidebar {
        flex:1 !important;
    }
    .sales-letter {
    padding: 50px 20px !important;
    }
    .sales-letter img {
        max-width:40%;
    }
}


/* Sales Page Specific Styles */
.sales-hero {
    background-image: url('https://via.placeholder.com/1920x1080');
    padding: 20px 0;
}

.sales-hero h1 {
    font-size: 3rem;
    color: white;
}

.sales-letter {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.headline {
    font-size: 2.7rem;
    color: #d63e3e;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* .headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 4px;
    background-color: #d63e3e;
} */

.subheadline {
    font-size: 1.6rem;
    font-style: italic;
    margin-bottom: 40px;
    color: #333;
    border-left: 5px solid #d63e3e;
    padding-left: 15px;
    line-height: 1.4;
    background-color: rgba(214, 62, 62, 0.05);
    padding: 15px;
    border-radius: 5px;
}

.sales-letter p {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 1.1rem;
}

.sales-letter p strong {
    color: #d63e3e;
    font-weight: 700;
    background-color: rgba(214, 62, 62, 0.1);
    padding: 0 5px;
}

.sales-letter ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.sales-letter ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #d63e3e;
    font-weight: bold;
}

.price-section {
    background-color: #f9f9f9;
    background-image: linear-gradient(135deg, #f9f9f9, #f0f0f0);
    padding: 35px;
    margin: 50px 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px dashed #d63e3e;
    position: relative;
}

.price-section::before {
    content: 'LIMITED TIME OFFER';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d63e3e;
    color: white;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 20px;
}

.price {
    font-size: 3rem;
    color: #d63e3e;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    display: inline-block;
    position: relative;
}

.price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: #d63e3e;
}

.guarantee {
    display: flex;
    align-items: center;
    background-color: #f0f8e6;
    border: 2px solid #91c95b;
    padding: 25px;
    border-radius: 10px;
    margin: 50px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background-color: rgba(145, 201, 91, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.guarantee-image {
    flex: 0 0 100px;
    margin-right: 20px;
}

.guarantee-image img {
    width: 100%;
}

.bonus-section {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.bonus-box {
    border: 2px dashed #4a90e2;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.bonus-icon {
    flex: 0 0 80px;
    margin-right: 20px;
}

.bonus-icon i {
    font-size: 3rem;
    color: #4a90e2;
}

.faq-section {
    margin: 60px 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.order-section {
    background-color: #f9f9f9;
    background-image: linear-gradient(135deg, #f5f5f5, #ffffff);
    border-radius: 10px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 3px solid #d63e3e;
    position: relative;
    overflow: hidden;
}

.order-section-container {
    padding: 50px 40px;
    position:relative;
}

.order-section-container::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(214, 62, 62, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.order-section-container::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(214, 62, 62, 0.05);
    border-radius: 50%;
    bottom: -75px;
    left: -75px;
    z-index: 0;
}

.order-section h2 {
    font-size: 2.5rem;
    color: #d63e3e;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    z-index: 1;
}

.order-section h2::after {
    display: none;
}

.order-section p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.order-button {
    display: inline-block;
    background-color: #d63e3e;
    background-image: linear-gradient(to right, #d63e3e, #b52f2f);
    color: white;
    padding: 22px 45px;
    font-size: 1.5rem;
    border-radius: 8px;
    margin: 35px 0;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(214, 62, 62, 0.3);
    position: relative;
    z-index: 1;
    border: 2px solid #d63e3e;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(214, 62, 62, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 25px rgba(214, 62, 62, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(214, 62, 62, 0.3);
    }
}

.order-button:hover {
    background-image: linear-gradient(to right, #b52f2f, #d63e3e);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(214, 62, 62, 0.4);
    animation: none;
}

.order-button:active {
    transform: translateY(2px);
    box-shadow: 0 5px 15px rgba(214, 62, 62, 0.3);
}

/* VSL Page Styles */
.vsl-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vsl-cta {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    background-image: linear-gradient(135deg, #f9f9f9, #f0f0f0);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #d63e3e;
    position: relative;
}

.vsl-cta::before {
    content: 'LIMITED TIME';
    position: absolute;
    top: -10px;
    right: 30px;
    background-color: #d63e3e;
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(3deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Members Area Styles */
.members-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.sidebar {
    flex: 0 0 300px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 15px;
}

.sidebar-nav a {
    display: block;
    padding: 12px 15px;
    background-color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sidebar-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: rgba(214, 62, 62, 0.1);
    z-index: -1;
    transition: width 0.3s ease;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    background-color: #d63e3e;
    color: white;
    box-shadow: 0 5px 15px rgba(214, 62, 62, 0.2);
    transform: translateX(5px);
}

.sidebar-nav a:hover i, .sidebar-nav a.active i {
    transform: scale(1.2);
}

.sidebar-nav a i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.main-content {
    flex: 1;
    min-width: 300px;
}

.content-module {
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    border-top: 4px solid #d63e3e;
    position: relative;
    overflow: hidden;
}

.content-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(214, 62, 62, 0.02), transparent);
    z-index: 0;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.module-title {
    font-size: 1.5rem;
    margin: 0;
}

.lesson-list {
    list-style: none;
}

.lesson-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.lesson-item i {
    margin-right: 15px;
    color: #d63e3e;
}

.lesson-title {
    flex: 1;
}

.lesson-duration {
    color: #888;
    font-size: 0.9rem;
}

/* Affiliates Area Styles */
.affiliates-hero {
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    padding: 100px 0;
    position: relative;
}

.affiliates-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.affiliates-hero-content {
    position: relative;
    z-index: 1;
}

.commission-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
}

.commission-box {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.commission-rate {
    font-size: 3rem;
    color: #d63e3e;
    margin-bottom: 10px;
}

.stats-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background-color: #2a2a2a;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: #d63e3e;
    margin-bottom: 10px;
}

.resources-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.resource-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
    color: #d63e3e;
    margin-bottom: 20px;
}

.resource-card ul {
    list-style-position: inside;
}

.resource-card li {
    margin-bottom: 10px;
}

.affiliate-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group textarea {
    height: 150px;
}

.submit-button {
    background-color: #d63e3e;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #a12929;
}