/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f8ff;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #1a5276 0%, #0c3a5e 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-content h1 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Table Container */
.table-container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 15px;
    overflow-x: auto;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 2rem 0 3rem;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(145deg, #e3f2fd, #bbdefb);
    border-radius: 10px;
    padding: 1.8rem;
    margin: 0.8rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-7px);
    background: linear-gradient(145deg, #bbdefb, #90caf9);
}

.benefit-card h3 {
    color: #0d47a1;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: #1a237e;
    font-weight: 500;
}

.product-info {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.product-info h2 {
    color: #1a5276;
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
    text-align: center;
}

.product-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-info ul {
    margin: 1.5rem 0 2rem 2rem;
}

.product-info li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.8rem;
}

.product-info li:before {
    content: "•";
    color: #1a5276;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.safety-info {
    background-color: #e3f2fd;
    border-left: 4px solid #1a5276;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.safety-info h3 {
    color: #0d47a1;
    margin-bottom: 1rem;
}

.testimonials {
    margin-top: 2rem;
}

.testimonials h2 {
    color: #1a5276;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.testimonial {
    background: linear-gradient(145deg, #ffffff, #f5f9ff);
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.testimonial:before {
    content: """;
    font-size: 5rem;
    color: #bbdefb;
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.testimonial span {
    display: block;
    text-align: right;
    color: #1a5276;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0c3a5e 0%, #082848 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    text-align: center;
}

.contact-info {
    margin-bottom: 1.8rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-links {
    margin: 1.5rem 0;
}

.footer-links a {
    color: #bbdefb;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefits {
        flex-direction: column;
    }
    
    .benefit-card {
        min-width: 100%;
        margin: 0.8rem 0;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .product-info {
        padding: 1.8rem;
    }
}