body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5fffa;
    color: #333;
    line-height: 1.6;
}

.herohome {
    background: url('https://images.unsplash.com/photo-1557682250-33bd709cbe85?q=80&w=1129&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    height: 300px; /* Reduced from 500px to 300px for a thinner banner – adjust as needed (e.g., 250px for even thinner) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero2 {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://media.istockphoto.com/id/1497909628/photo/cat-and-dog-sitting-together-on-meadow.jpg?s=612x612&w=0&k=20&c=zpZE3_h5u8pnkml1qPyX31KXuIodY8KQ1bwkH7BWc_Q=') center/cover no-repeat;
    height: 300px; /* Reduced from 500px to 300px for a thinner banner – adjust as needed (e.g., 250px for even thinner) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.herogames {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://media.istockphoto.com/id/1516645489/photo/wooden-word-dice-spell-game-night-with-multicoloured-dice-around-it.jpg?s=612x612&w=0&k=20&c=qXym2bcGchadTWS84TGONa0fHHrFFFfiXu7hzRm02AE=') center/cover no-repeat;
    height: 300px; /* Reduced from 500px to 300px for a thinner banner – adjust as needed (e.g., 250px for even thinner) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-content h1 {
    font-size: 3.5rem;
    margin: 0;
}

.hero-content p {
    font-size: 1.6rem;
}

.disclosure {
    background: #e8f5e9;
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    border-bottom: 2px solid #a6dea8;
}

.articles-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.articles-section h2 {
    text-align: center;
    color: #2e7d32;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    margin: 0 0 15px;
    color: #2e7d32;
    font-size: 1.5rem;
}

.read-more {
    color: #4caf50;
    font-weight: bold;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.placeholder {
    opacity: 0.8;
    text-align: center;
}

footer {
    text-align: center;
    padding: 40px;
    background: #2e7d32;
    color: white;
    margin-top: 80px;
}
.table-container {
    overflow-x: auto;
    margin: 40px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: #1976d2;
    color: white;
}

tr:hover {
    background: #f0f8ff;
}
details summary::-webkit-details-marker { display: none; } /* Hide default arrow */
.expanded-review { padding: 25px; background: #f9fff9; }
details[open] .card-image { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.clickable-row {
    cursor: pointer;
    transition: background 0.3s;
}

.clickable-row:hover {
    background: #e8f5e9 !important;
}
.card-header {
    padding: 20px;
    background: white;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.card-header h3 {
    margin: 0 0 8px;
    color: #2e7d32;
}

.card-header p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}
.category-section {
    margin-bottom: 80px;
}

.category-title {
    text-align: center;
    color: #1976d2;
    font-size: 2rem;
    margin-bottom: 30px;
}

.placeholder-category {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px;
    background: #f0f8ff;
    border-radius: 12px;
    margin: 60px auto;
    max-width: 800px;
}
.clickable-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.logo-link {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100;
}

.site-logo {
    height: 60px; /* Adjust size as needed */
    width: auto;
    border-radius: 8px; /* Optional: slight rounding */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Optional: subtle shadow */
    transition: transform 0.3s;
}

.site-logo:hover {
    transform: scale(1.05);
}

/* Ensure header has relative positioning so absolute logo stays in place */
header.hero {
    position: relative;
    padding-top: 80px; /* Adds space so logo doesn't overlap hero text */
}
.newsletter-section {
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    text-align: center;
}

.newsletter-section h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.newsletter-section p {
    color: #555;
    margin-bottom: 20px;
}

.newsletter-section input[type="email"] {
    width: 70%;
    padding: 12px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-section button {
    padding: 12px 20px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-section button:hover {
    background: #388e3c;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .newsletter-section input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }
    .newsletter-section button {
        width: 100%;
    }
}