/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Acquisition.com Color Scheme */
:root {
    /* Primary Colors */
    --acquisition-purple: #6f00ff;
    --acquisition-navy: #14172a;
    --acquisition-orange: #fba004;
    --acquisition-white: #ffffff;
    --acquisition-gray: #2f3141;
    
    /* Secondary Colors */
    --acquisition-light-gray: #f8f9fa;
    --acquisition-dark-gray: #1a1d29;
    --acquisition-text-gray: #6b7280;
    
    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--acquisition-navy);
    background-color: var(--acquisition-white);
}

/* Sidebar Navigation - Hidden for Acquisition.com style */
.sidebar {
    display: none;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.nav-menu {
    list-style: none;
    padding: 1rem 0;
}

.nav-menu li {
    margin: 0.5rem 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: #FF8C00;
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border-left-color: #FF8C00;
}

.nav-link i {
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    position: absolute;
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
}

.virtual-badge {
    background: rgba(255, 140, 0, 0.2);
    border: 1px solid #FF8C00;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    color: #FF8C00;
    font-weight: 500;
}

.virtual-badge i {
    margin-right: 0.5rem;
}

/* Main Content */
.main-content {
    margin-left: 0;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

.section {
    display: none;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section.active {
    display: block;
}

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

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    min-height: 80vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    margin-right: 0.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.highlight {
    color: #8B4513;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-secondary:hover {
    background: #8B4513;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-outline:hover {
    background: #8B4513;
    color: white;
}

.btn-ultra {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-ultra:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #64748b;
    border: 2px dashed #cbd5e1;
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* SEO Content Section */
.seo-content-section {
    padding: 4rem 0;
    background: white;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.seo-content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.seo-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #8B4513;
    transition: transform 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-5px);
}

.seo-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.seo-card p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.seo-card ul {
    list-style: none;
    padding: 0;
}

.seo-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.seo-card li::before {
    content: "✓";
    color: #228B22;
    position: absolute;
    left: 0;
    font-weight: bold;
}
/* Free Resources Section */
.free-resources-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    margin: 2rem 0;
    border-radius: 16px;
}

.free-resources-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid #8B4513;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.resource-card p {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.resource-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.resource-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.resource-card li::before {
    content: "✓";
    color: #228B22;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Tips Library Section */
.tips-library-section {
    padding: 4rem 0;
    background: white;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tips-library-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #8B4513;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
}

.tip-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tip-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Step-by-Step Section */
.step-by-step-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    margin: 2rem 0;
    border-radius: 16px;
}

.step-by-step-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.training-protocols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
    margin-top: 3rem;
}

.protocol-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.protocol-card h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    text-align: center;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #8B4513;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Video Library Section */
.video-library-section {
    padding: 4rem 0;
    background: white;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.video-library-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    margin-top: 3rem;
}

.video-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card .video-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #64748b;
    border: 2px dashed #cbd5e1;
    margin-bottom: 1.5rem;
}

.video-card .video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

.video-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.video-card p {
    color: #64748b;
    line-height: 1.6;
}
/* 4 Quadrants Section */
.quadrants-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    margin: 2rem 0;
    border-radius: 16px;
}

.quadrants-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.quadrants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    margin-top: 3rem;
}

.quadrant-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.quadrant-card:hover {
    transform: translateY(-5px);
}

.quadrant-card.positive-reinforcement {
    border-top: 4px solid #228B22;
}

.quadrant-card.negative-reinforcement {
    border-top: 4px solid #3B82F6;
}

.quadrant-card.positive-punishment {
    border-top: 4px solid #EF4444;
}

.quadrant-card.negative-punishment {
    border-top: 4px solid #F59E0B;
}

.quadrant-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.quadrant-card p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quadrant-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #8B4513;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.quadrants-explanation {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.quadrants-explanation h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    text-align: center;
}

.quadrants-explanation p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    margin: 2rem 0;
    border-radius: 16px;
}

.local-seo-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    margin-top: 3rem;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid #8B4513;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.location-card p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-card ul {
    list-style: none;
    padding: 0;
}

.location-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.location-card li::before {
    content: "📍";
    position: absolute;
    left: 0;
}

.why-virtual {
    padding: 4rem 0;
    background: white;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.why-virtual h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Section Headers */
h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    text-align: center;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.credentials {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.credentials h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.credentials li i {
    color: #8B4513;
    margin-right: 1rem;
    width: 20px;
}

.philosophy {
    background: #f8fafc;
    color: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #8B4513;
}

.philosophy h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #64748b;
    border: 2px dashed #cbd5e1;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* About Headshot Styling */
.about-headshot {
    width: 300px !important;
    height: 400px !important;
    border-radius: 0;
    object-fit: cover;
    object-position: center center;
    box-shadow: none;
    display: block !important;
    background: transparent;
    border: none;
    min-height: 400px;
    min-width: 300px;
}

/* Experience & Results Section Styling */
.credentials {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #8B4513;
    margin: 20px 0;
}

.credentials h4 {
    color: #8B4513;
    margin-bottom: 15px;
}

.credentials li i {
    color: #8B4513;
    margin-right: 10px;
}

/* Training Philosophy Styling */
.philosophy {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #8B4513;
    margin: 20px 0;
}

.philosophy h3 {
    color: #8B4513;
    margin-bottom: 15px;
}

.philosophy strong {
    color: #8B4513;
}

/* Debug: Make sure about-image container is visible */
.about-image {
    display: flex !important;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.package-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.1);
}

.package-card.featured {
    border-color: #8B4513;
    transform: scale(1.05);
}

.package-card.standard {
    border: 2px solid #e2e8f0;
    background: white;
}

.package-card.ultra-premium {
    border: 4px solid #8B4513;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.4);
    position: relative;
    overflow: hidden;
}

.package-card.ultra-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF8C00, #8B4513, #FF8C00);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #8B4513;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-badge.ultra {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.package-badge.minimum {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.3);
    border: 2px solid #e2e8f0;
}

.package-badge.minimum::before {
    content: '✓ ';
    font-weight: bold;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
}

.package-value {
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 600;
    margin-top: 5px;
    text-decoration: line-through;
    opacity: 0.8;
}

.package-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.package-features li i {
    color: #228B22;
    margin-right: 1rem;
    width: 20px;
}

/* Bonus Feature Styling */
.feature-item.bonus {
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.feature-item.bonus i {
    color: white;
    margin-right: 0.5rem;
}

.feature-item.bonus span {
    color: white;
    font-weight: 600;
}

.package-note {
    text-align: center;
    color: #64748b;
    font-style: italic;
}

.package-note i {
    color: #8B4513;
    margin-right: 0.5rem;
}

.package-note.minimum-note {
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #64748b;
}

.package-note.minimum-note small {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Puppy Section */
.puppy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.puppy-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-item i {
    color: #8B4513;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #64748b;
}

.puppy-program {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #8B4513;
}

.puppy-program h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.puppy-program ul {
    list-style: none;
}

.puppy-program li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.puppy-program li::before {
    content: "•";
    color: #8B4513;
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
}

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

.author-info h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #FF8C00;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 10;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    color: #1e293b;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #8B4513;
    transition: transform 0.3s ease;
}

.faq-icon {
    color: #8B4513;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-method i {
    color: #8B4513;
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
}

.contact-method h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: #64748b;
}

.virtual-highlight {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.virtual-highlight i {
    font-size: 2rem;
    margin-right: 1rem;
    color: #FF8C00;
}

.virtual-highlight h4 {
    margin-bottom: 0.25rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.form-group textarea {
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .puppy-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    /* Completely hide fixed elements on tablets and smaller */
    .fixed-left-margin,
    .fixed-right-margin,
    .professional-photo,
    .reviews-sidebar,
    .review-item {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 100%;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        padding: 0;
    }
    
    .section {
        padding: 0.5rem;
        margin: 0;
        width: 100%;
    }
    
    .container {
        padding: 0 0.5rem;
        margin: 0;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin: 0.5rem 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin: 0.5rem 0;
    }
    
    .hero-buttons {
        justify-content: center;
        margin: 1rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    h2 {
        font-size: 1.5rem;
        margin: 1rem 0;
    }
    
    /* Mobile-specific spacing fixes */
    .hero-acquisition {
        padding: 2rem 0.5rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .free-training-section {
        padding: 2rem 0.5rem;
    }
    
    .training-resources-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .resource-item {
        padding: 1rem;
        margin: 0.5rem 0;
    }
    
    .book-cover {
        width: 150px;
        height: 200px;
        margin: 0 auto 1rem;
    }
    
    .faq-preview-section {
        padding: 2rem 0.5rem;
    }
    
    .faq-item {
        margin: 0.5rem 0;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    /* Top navigation mobile fixes */
    .top-nav {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .top-nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    /* Banner mobile fixes */
    .top-banner {
        padding: 0.5rem 0;
    }
    
    .banner-content {
        padding: 0 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .banner-text {
        font-size: 0.9rem;
    }
    
    /* Ensure fixed elements are completely removed on mobile */
    .fixed-left-margin,
    .fixed-right-margin,
    .professional-photo,
    .reviews-sidebar,
    .review-item,
    .headshot-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
    }
    
    /* Remove any desktop margins that might interfere */
    * {
        box-sizing: border-box;
    }
    
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
}

/* Free Training Link Styling */
.top-nav-link[href*="free-training"] {
    color: #FF6B35 !important;
    font-weight: 600 !important;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 6px;
    padding: 0.5rem 0.75rem !important;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.top-nav-link[href*="free-training"]:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

/* Mobile Free Training Link */
@media (max-width: 768px) {
    .top-nav-link[href*="free-training"] {
        display: block !important;
        margin: 0.5rem 0;
        text-align: center;
        background: #FF6B35;
        color: white !important;
        border-radius: 8px;
        padding: 0.75rem !important;
        font-size: 1rem;
        font-weight: bold !important;
    }
    
    .top-nav-link[href*="free-training"]:hover {
        background: #e55a2b;
        color: white !important;
    }
}

/* How It Works Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

.why-virtual-works {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
}

.why-virtual-works h3 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2rem;
}


.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.top-banner:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Top Navigation Bar */
.top-nav {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    color: #8B4513;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.top-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.top-nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.top-nav-link:hover,
.top-nav-link.active {
    color: #8B4513;
}

.nav-toggle {
    display: none;
    color: #8B4513;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.dropdown-link:hover {
    background: #f8fafc;
    color: #8B4513;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.banner-badge {
    background: white;
    color: #FF8C00;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.banner-text {
    font-weight: 600;
    font-size: 1rem;
}

.banner-arrow {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.banner-arrow:hover {
    transform: translateX(5px);
}

/* Hero Acquisition Style */
.hero-acquisition {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-content .hero-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* How-to Steps Styling */
.how-to-steps {
    background: #f8fafc;
    border-left: 4px solid var(--acquisition-purple);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.how-to-steps h4 {
    color: var(--acquisition-navy);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.how-to-steps ol {
    margin: 0;
    padding-left: 1.25rem;
}

.how-to-steps li {
    color: var(--acquisition-text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.how-to-steps li strong {
    color: var(--acquisition-navy);
    font-weight: 600;
}

/* Fixed Left Margin - Professional Photo */
.fixed-left-margin {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(1.0);
    z-index: 100;
    width: 350px;
    height: 450px;
    display: block !important;
    opacity: 1;
}

/* Hide fixed elements when zoom goes above 125% */
@media (min-width: 1600px) {
    .fixed-left-margin {
        display: none !important;
    }
}

/* Alternative detection for zoom levels above 125% */
@media (min-resolution: 1.25dppx) {
    .fixed-left-margin {
        display: none !important;
    }
}

.professional-photo {
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    width: 300px;
    height: 375px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.photo-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.photo-placeholder p {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Professional Headshot Styling */
.headshot-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    object-position: center top;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
    image-rendering: high-quality;
    transform: scale(1.0);
    margin: 0;
    padding: 0;
}

/* Fixed Right Margin - Reviews */
.fixed-right-margin {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 300px;
    display: block !important;
    opacity: 1;
}

/* Hide fixed elements when zoom goes above 125% */
@media (min-width: 1600px) {
    .fixed-right-margin,
    .fixed-left-margin {
        display: none !important;
    }
}

/* Alternative detection for zoom levels above 125% */
@media (min-resolution: 1.25dppx) {
    .fixed-right-margin,
    .fixed-left-margin {
        display: none !important;
    }
}

.reviews-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
}

.review-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.review-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.stars {
    color: #FF8C00;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.review-item p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.reviewer {
    color: #8B4513;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Free Training Section */
.free-training-section {
    padding: 4rem 0;
    background: white;
}

.free-training-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.training-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

/* Top CTA Section */
.top-cta-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin: 40px 0;
    border-radius: 15px;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.top-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.top-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.top-cta-section .btn {
    font-size: 1.3rem;
    padding: 18px 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Exploding Offer Section */
.exploding-offer-section {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.offer-container {
    max-width: 800px;
    margin: 0 auto;
}

.exploding-offer-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.offer-main h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.offer-main p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.bonus-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.bonus-item i {
    font-size: 1.5rem;
    color: #ffd700;
}

.bonus-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

.offer-timer {
    margin: 30px 0;
}

.offer-timer p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.countdown-timer {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-exploding {
    background: #ffd700;
    color: #2c3e50;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-exploding:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.offer-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 20px;
}

/* Book Cover Styles - Full Image Background */
.book-cover {
    width: 220px;
    height: 300px;
    border-radius: 0;
    margin: 0 auto 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-cover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.book-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Color overlay layers */
.book-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1.5;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.leash-book::before {
    background: linear-gradient(135deg, #20b2aa, #008b8b);
}

.crate-book::before {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
}

.barking-book::before {
    background: linear-gradient(135deg, #32cd32, #228b22);
}

.book-cover:hover::before {
    opacity: 0.1;
}

.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.6) 100%);
}

.book-title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    color: white;
    margin-bottom: auto;
}

.book-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.book-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.book-author {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.book-separator {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.book-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Leash Control Book - Teal Theme (complements blue) */
.leash-book {
    background: linear-gradient(135deg, #20b2aa, #008b8b);
    color: white;
}

/* Crate Mastery Book - Purple Theme */
.crate-book {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    color: white;
}

/* Quiet Control Book - Green Theme */
.barking-book {
    background: linear-gradient(135deg, #32cd32, #228b22);
    color: white;
}

.resource-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-item .btn {
    margin-top: auto;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #FF8C00;
}

.resource-icon {
    font-size: 3rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.resource-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.resource-item p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Featured Content Section */
.featured-content-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.featured-content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-image {
    font-size: 4rem;
    color: #FF8C00;
    margin-bottom: 1.5rem;
}

.featured-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.featured-item p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* FAQ Preview Section */
.faq-preview-section {
    padding: 4rem 0;
    background: white;
}

.faq-preview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* About Preview Section */
.about-preview-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.about-preview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.about-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-placeholder {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-placeholder i {
    font-size: 3rem;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.about-placeholder p {
    color: #64748b;
    font-weight: 500;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section.active {
    animation: fadeInUp 0.6s ease-out;
}

/* Extra Small Mobile Screens */
@media (max-width: 480px) {
    .main-content {
        margin: 0;
        padding: 0;
        width: 100vw;
    }
    
    .section {
        padding: 0.25rem;
        margin: 0;
        width: 100%;
    }
    
    .container {
        padding: 0 0.25rem;
        margin: 0;
        max-width: 100%;
    }
    
    .hero-acquisition {
        padding: 1rem 0.25rem;
    }
    
    .hero-content {
        padding: 0 0.25rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin: 0.5rem 0;
    }
    
    .hero-content .hero-subtitle {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }
    
    .free-training-section {
        padding: 1rem 0.25rem;
    }
    
    .training-resources-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0 0.25rem;
    }
    
    .resource-item {
        padding: 0.75rem;
        margin: 0.25rem 0;
    }
    
    .book-cover {
        width: 120px;
        height: 160px;
        margin: 0 auto 0.75rem;
    }
    
    .book-title {
        font-size: 1rem;
    }
    
    .book-author {
        font-size: 0.8rem;
    }
    
    .book-subtitle {
        font-size: 0.75rem;
    }
    
    h2 {
        font-size: 1.25rem;
        margin: 0.75rem 0;
    }
    
    .faq-preview-section {
        padding: 1rem 0.25rem;
    }
    
    .faq-item {
        margin: 0.25rem 0;
    }
    
    .faq-question {
        padding: 0.75rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 0.75rem 0.75rem;
    }
    
    .top-nav {
        padding: 0.25rem 0;
    }
    
    .nav-container {
        padding: 0.25rem 0.5rem;
    }
    
    .top-banner {
        padding: 0.25rem 0;
    }
    
    .banner-content {
        padding: 0 0.25rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .banner-text {
        font-size: 0.8rem;
    }
    
    .banner-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* Ensure no horizontal scrolling */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    * {
        max-width: 100%;
    }
    
    /* Hide fixed margins on all mobile screens */
    .fixed-left-margin,
    .fixed-right-margin,
    .professional-photo,
    .reviews-sidebar,
    .review-item,
    .headshot-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
    }
}

!
 
 / *   M o n e y - B a c k   G u a r a n t e e   S t y l e s   * / 
 . g u a r a n t e e - b a n n e r   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 0 b 9 8 1 ,   # 0 5 9 6 6 9 ) ; 
         p a d d i n g :   2 r e m   0 ; 
         m a r g i n :   2 r e m   0 ; 
 } 
 
 . g u a r a n t e e - c o n t e n t   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   2 r e m ; 
         t e x t - a l i g n :   c e n t e r ; 
 } 
 
 . g u a r a n t e e - i c o n   { 
         f o n t - s i z e :   3 r e m ; 
         c o l o r :   w h i t e ; 
 } 
 
 . g u a r a n t e e - t e x t   h 2   { 
         c o l o r :   w h i t e ; 
         f o n t - s i z e :   2 r e m ; 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
 } 
 
 . g u a r a n t e e - t e x t   p   { 
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 ) ; 
         f o n t - s i z e :   1 . 1 r e m ; 
         m a r g i n :   0 ; 
 } 
 
 . g u a r a n t e e - b a d g e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   0 . 5 r e m ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 0 b 9 8 1 ,   # 0 5 9 6 6 9 ) ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   0 . 7 5 r e m   1 r e m ; 
         b o r d e r - r a d i u s :   8 p x ; 
         f o n t - s i z e :   0 . 9 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         m a r g i n - t o p :   1 r e m ; 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 3 ) ; 
 } 
 
 . g u a r a n t e e - b a d g e   i   { 
         f o n t - s i z e :   1 r e m ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . g u a r a n t e e - c o n t e n t   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   1 r e m ; 
         } 
         
         . g u a r a n t e e - t e x t   h 2   { 
                 f o n t - s i z e :   1 . 5 r e m ; 
         } 
         
         . g u a r a n t e e - t e x t   p   { 
                 f o n t - s i z e :   1 r e m ; 
         } 
 } 
 
 
 
 / *   M o n e y - B a c k   G u a r a n t e e   S t y l e s   * / 
 . g u a r a n t e e - b a n n e r   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 0 b 9 8 1 ,   # 0 5 9 6 6 9 ) ; 
         p a d d i n g :   3 r e m   0 ; 
         m a r g i n :   2 r e m   0 ; 
         p o s i t i o n :   r e l a t i v e ; 
         z - i n d e x :   1 0 ; 
 } 
 
 . g u a r a n t e e - c o n t e n t   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   2 r e m ; 
         t e x t - a l i g n :   c e n t e r ; 
 } 
 
 . g u a r a n t e e - i c o n   { 
         f o n t - s i z e :   3 r e m ; 
         c o l o r :   w h i t e ; 
 } 
 
 . g u a r a n t e e - t e x t   h 2   { 
         c o l o r :   w h i t e ; 
         f o n t - s i z e :   2 r e m ; 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
 } 
 
 . g u a r a n t e e - t e x t   p   { 
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 ) ; 
         f o n t - s i z e :   1 . 1 r e m ; 
         m a r g i n :   0 ; 
 } 
 
 . g u a r a n t e e - b a d g e   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   0 . 5 r e m ; 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 0 b 9 8 1 ,   # 0 5 9 6 6 9 ) ; 
         c o l o r :   w h i t e ; 
         p a d d i n g :   0 . 7 5 r e m   1 r e m ; 
         b o r d e r - r a d i u s :   8 p x ; 
         f o n t - s i z e :   0 . 9 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         m a r g i n - t o p :   1 r e m ; 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 3 ) ; 
 } 
 
 . g u a r a n t e e - b a d g e   i   { 
         f o n t - s i z e :   1 r e m ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . g u a r a n t e e - c o n t e n t   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   1 r e m ; 
         } 
         
         . g u a r a n t e e - t e x t   h 2   { 
                 f o n t - s i z e :   1 . 5 r e m ; 
         } 
         
         . g u a r a n t e e - t e x t   p   { 
                 f o n t - s i z e :   1 r e m ; 
         } 
 } 
 
 
 
 /* ========================================
   BLOG STYLES
   ======================================== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.blog-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Featured Section */
.blog-featured {
    padding: 4rem 0;
    background: #f8f9fa;
}

.blog-featured h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: #6c757d;
    font-weight: 500;
}

.blog-category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: #ff6b35;
}

.blog-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Blog All Posts Section */
.blog-all-posts {
    padding: 4rem 0;
    background: white;
}

.blog-all-posts h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.blog-list {
    max-width: 800px;
    margin: 0 auto;
}

.blog-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.blog-item-content {
    padding: 1.5rem;
}

.blog-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-item h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-item h3 a:hover {
    color: #ff6b35;
}

.blog-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Blog Newsletter Section */
.blog-newsletter {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #1a1a1a;
}

.newsletter-form input::placeholder {
    color: #6c757d;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.blog-post-date {
    color: #6c757d;
    font-weight: 500;
}

.blog-post-author {
    color: #ff6b35;
    font-weight: 600;
}

.blog-post-content {
    line-height: 1.8;
    color: #333;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0 1rem 0;
    padding-top: 1rem;
}

.blog-post-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0 0.75rem 0;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    color: #444;
}

.blog-post-content ul, .blog-post-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    color: #444;
}

.blog-post-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

.blog-post-content em {
    color: #ff6b35;
    font-style: italic;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .blog-post {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .blog-post-title {
        font-size: 1.8rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Video Page Styling */
.video-container { 
    margin: 2rem 0; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
    background: #f8fafc; 
    padding: 1rem; 
}

/* Mobile Package Optimizations */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1rem !important;
    }
    
    .package-card {
        margin-bottom: 1rem !important;
        padding: 1.5rem !important;
    }
    
    .package-price {
        font-size: 2.5rem !important;
        margin: 1rem 0 !important;
    }
    
    .package-features {
        max-height: 200px !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
    }
    
    .package-features.expanded {
        max-height: none !important;
    }
    
    .feature-toggle {
        display: block !important;
        background: #FF6B35 !important;
        color: white !important;
        border: none !important;
        padding: 0.75rem 1rem !important;
        border-radius: 8px !important;
        margin: 1rem 0 !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        width: 100% !important;
    }
    
    .feature-item {
        padding: 0.5rem 0 !important;
        font-size: 0.9rem !important;
    }
    
    .package-badge {
        font-size: 0.8rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
        margin: 0.5rem 0 !important;
    }
}

.feature-toggle {
    display: none;
}

/* Mobile Navigation Optimization */
@media (max-width: 768px) {
    .top-nav {
        padding: 0.5rem 1rem !important;
    }
    
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .nav-logo {
        display: none !important;
    }
    
    .top-nav-menu {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .top-nav-menu li {
        margin: 0 !important;
    }
    
    .top-nav-link {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.85rem !important;
        text-decoration: none !important;
        color: #333 !important;
        font-weight: 500 !important;
        white-space: nowrap !important;
        border-radius: 4px !important;
        transition: all 0.3s ease !important;
    }
    
    .top-nav-link:hover {
        background-color: #f0f0f0 !important;
        color: #8B4513 !important;
    }
    
    .nav-toggle {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .top-nav-menu {
        gap: 0.25rem !important;
    }
    
    .top-nav-link {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.8rem !important;
    }
}
 
 