/* General Body & Typography */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 25px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-family: 'Lora', serif;
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.2;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8em;
    color: #34495e;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

p {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.subtitle {
    font-size: 0.9em;
    color: #7f8c8d;
    margin-top: -10px;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin-top: 20px;
    margin-bottom: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

th {
    background-color: #e9ecef;
    font-weight: 600;
    color: #495057;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Images */
.product-image {
    width: 100%;
    height: 300px; /* Placeholder height */
    background-color: #e0f2f7; /* Light blue placeholder background */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden; /* Ensure images fit if they overflow */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area, cropping if necessary */
    border-radius: 8px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 15px;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
}

.btn-primary {
    background-color: #ff6f61; /* Vibrant Coral */
    color: #fff;
}

.btn-primary:hover {
    background-color: #e65c50;
    transform: translateY(-2px);
}

.btn-social {
    background-color: #6a0dad; /* Deep Purple */
    color: #fff;
    margin-right: 15px;
}

.btn-social:hover {
    background-color: #5a099a;
    transform: translateY(-2px);
}

.btn-feedback {
    background-color: #ced4da; /* Light Gray */
    color: #333;
    margin-right: 10px;
    padding: 10px 20px;
}

.btn-feedback:hover {
    background-color: #adb5bd;
}

.call-to-action {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    font-weight: 600;
    color: #2c3e50;
}

.feedback-section {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.feedback-buttons {
    margin-top: 15px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #7f8c8d;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 20px auto;
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    th, td {
        padding: 10px;
    }

    .btn {
        display: block;
        margin: 15px auto;
        width: 80%;
    }

    .btn-social {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6em;
    }

    h2 {
        font-size: 1.3em;
    }
    
    .product-image {
        height: 200px; /* Smaller height for very small screens */
    }
}