/* Disclosure Banner Styles */
.disclosure-banner {
    background-color: #fff8e1; /* Light yellow, for attention but not too aggressive */
    color: #795548; /* Brown text for good contrast */
    padding: 10px 20px;
    text-align: center;
    font-size: 0.9em;
    border-bottom: 1px solid #ffecb3; /* Slightly darker yellow border */
}

.disclosure-banner p {
    margin: 0;
    padding: 0;
}

.disclosure-banner strong {
    color: #5d4037; /* Darker brown for emphasis */
}

/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e6f7f7; /* Light teal/cyan background */
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #008080; /* Teal */
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 5px solid #006666; /* Darker Teal */
}

header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
}

header p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content Styles */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

/* Section Styles */
section {
    background-color: white;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #006666; /* Darker Teal */
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 2em;
    border-bottom: 2px solid #b2dfdb; /* Lighter teal for underline */
    padding-bottom: 10px;
}

/* Comparison Table Styles */
#comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#comparison-table th, #comparison-table td {
    border: 1px solid #b2dfdb; /* Lighter teal border */
    padding: 12px;
    text-align: left;
}

#comparison-table th {
    background-color: #4db6ac; /* Medium Teal */
    color: white;
    font-weight: bold;
}

#comparison-table tr:nth-child(even) {
    background-color: #e0f2f1; /* Very light teal for alternate rows */
}

#comparison-table tr:hover {
    background-color: #c8e6c9; /* Light green on hover - for contrast */
}

/* Product Review Card Styles */
#product-reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.product-card {
    background-color: #f0fafa; /* Very light teal, slightly different from section bg */
    border: 1px solid #b2dfdb; /* Lighter teal border */
    border-radius: 8px;
    padding: 20px;
    width: calc(33.333% - 30px); /* Adjust for gap, aiming for 3 cards per row */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content */
    text-align: center; /* Center text */
}

.product-card img {
    max-width: 80%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 2px solid #4db6ac; /* Medium Teal border for images */
}

.product-card h3 {
    color: #00796b; /* Dark Teal variant */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.product-card p {
    font-size: 0.95em;
    margin-bottom: 15px;
    flex-grow: 1; /* Allows paragraph to take available space */
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    background-color: #26a69a; /* Slightly lighter Teal for buttons */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.cta-button:hover {
    background-color: #00897b; /* Darker Teal on hover */
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 25px;
    background-color: #004d40; /* Darkest Teal */
    color: #b2dfdb; /* Light teal text for contrast */
    margin-top: 30px;
}

footer p {
    margin: 5px 0;
    font-size: 0.9em;
}

/* Responsive Design Adjustments */
@media (max-width: 992px) {
    .product-card {
        width: calc(50% - 25px); /* 2 cards per row */
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    header p {
        font-size: 1em;
    }
    section h2 {
        font-size: 1.8em;
    }
    #comparison-table th, #comparison-table td {
        padding: 10px;
        font-size: 0.9em;
    }
    .product-card {
        width: calc(100% - 20px); /* 1 card per row */
        margin-left: auto;
        margin-right: auto;
    }
    .product-card h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    #comparison-table {
        overflow-x: auto; /* Allow horizontal scrolling for very small screens */
    }
    #comparison-table th, #comparison-table td {
        font-size: 0.8em;
        padding: 8px;
    }
    .cta-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}
