/* Additional responsive design styles */

/* Tablet Styles */
@media (max-width: 992px) {
    .container {
        width: 95%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid, 
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .template-card {
        max-width: 450px;
        margin: 0 auto 2rem;
    }
    
    .features-grid, 
    .approach-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bundle-offer {
        padding: 1.5rem;
    }
    
    .payment-option {
        padding: 1.5rem;
    }
    
    .payment-option .price {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section {
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .template-image {
        height: 180px;
    }
    
    .template-content h3 {
        font-size: 1.3rem;
    }
    
    .payment-option h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    header, 
    footer, 
    .hero, 
    .cta-section, 
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    .template-card,
    .feature-item,
    .approach-item,
    .faq-item {
        page-break-inside: avoid;
    }
}
