/* Global styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
    line-height: 1.6;
}

main {
    flex: 1;
}

/* Typography optimization for readability */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Responsive images */
.product-image {
    max-width: 100%;
    max-height: 400px; /* Limit height to match text content */
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

.product-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Feature cards */
.feature-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #fff;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Feature lists */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact info section */
.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Coming soon section */
.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Privacy content */
.privacy-content section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Testimonials */
.blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.blockquote p {
    font-style: italic;
}

.blockquote-footer {
    color: #666;
}

/* Accessibility improvements */
.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Print styles for better SEO */
@media print {
    .navbar {
        display: none;
    }
    
    .product-image {
        max-width: 500px;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* Responsive design improvements */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}