/* Page-specific CSS for product pages */

/* Subnav Styles */
.subnav-section {
    background-color: var(--secondary-color);
    padding: 100px 0 0;
    margin-bottom: -50px;
}

.subnav {
    color: white;
    padding-bottom: 20px;
}

.subnav h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.subnav-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px 30px;
}

.subnav-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s;
    font-weight: 500;
    
}

.subnav-list li a:hover,
.subnav-list li a.active {
    color: white;
    border-bottom: 2px solid white;
}

/* Specific Hero styles for product pages */
.product-hero {
    padding: 100px 0 80px;
}

/* Compact hero section for inner pages */
.compact-hero {
    padding: 20px 0; /* Reduced padding to make it shorter */
    margin-bottom: 0; /* Remove any bottom margin */
    min-height: 0; /* Remove any minimum height */
}

/* Screenshot Section */
.screenshot-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.screenshot {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4A6FDC 0%, #2E4172 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

/* Guide Page styles */
.guide-content {
    padding: 100px 0;
    background-color: white;
}

.guide-content .container {
    max-width: 900px;
}

.guide-section {
    margin-bottom: 50px;
}

.guide-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.guide-section p {
    margin-bottom: 20px;
}

.guide-section img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    width: 100%;
}

.guide-section ul,
.guide-section ol {
    margin: 20px 0 20px 30px;
}

.guide-section li {
    margin-bottom: 10px;
}

/* Table of Contents */
ul.toc {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 20px 30px;
    margin-left: 0;
    list-style-type: none;
}

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

ul.toc a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

ul.toc a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.note-box {
    background-color: rgba(74, 111, 220, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.tip-box {
    background-color: rgba(39, 174, 96, 0.1);
    border-left: 4px solid #27AE60;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.warning-box {
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #E74C3C;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

/* Code snippets */
.code-block {
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 15px;
    font-family: monospace;
    overflow-x: auto;
    margin: 20px 0;
}

/* Privacy Policy & Legal Pages */
.legal-content {
    padding: 100px 0;
    background-color: white;
}

.legal-content .container {
    max-width: 900px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.legal-section h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

.legal-section p,
.legal-section ul,
.legal-section ol {
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 25px;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-date {
    font-style: italic;
    color: #777;
    margin-bottom: 30px;
}

/* Contact Page Specifics */
.product-contact {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.support-topics {
    margin-top: 40px;
}

.support-topics ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.support-topics li {
    margin-bottom: 10px;
}

.support-topics a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.support-topics a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

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

.faq-item {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .subnav-section {
        padding: 80px 0 0;
    }
    
    .subnav-list {
        flex-direction: column;
    }
    
    .subnav-list li {
        margin-bottom: 10px;
    }
    
    .product-hero {
        padding: 80px 0 60px;
    }
    
    .step {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

.disclaimer {
    font-size: 14px; /* or whatever size you want */
    text-align: center;
}