/* Cards and Components */

/* Main container with smooth background transition */
main.container {
    background: transparent;
    border-radius: 0;
    padding-top: 0;
    margin-top: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Article content background - white background centered on page */
.post,
.h-entry,
article {
    background: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}
.cards {
    margin-top: 1.5rem;
    padding: 2rem 1rem;
    background: linear-gradient(180deg, var(--secondary-bg, #e8f5ea) 0%, var(--primary-bg, #f8fdf9) 50%, transparent 100%);
    border-radius: 12px;
}

/* Individual cards with subtle green tint */
.cards .card {
    border: 1px solid var(--border-color, #d4e8d6);
    transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

/* Card images should fill the rounded corners */
.cards .card img {
    border-radius: 8px 8px 0 0 !important;
    width: 100%;
    object-fit: cover;
}

/* Card content has different background from main background */
.cards .card .text,
.cards .card .e-content {
    background: #ffffff;
    padding: 1rem;
    margin: 0;
}

.cards .card:hover {
    border-color: var(--accent-color, #7fb069);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(125, 176, 105, 0.15);
}

/* Style for contact section with healing colors */
.contact-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--soft-green, #c8e6c9);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color, #7fb069);
}

.contact {
    background: var(--secondary-bg, #e8f5ea);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color, #d4e8d6);
}

.contact h1 {
    color: var(--link-color, #3d7c47);
    margin-bottom: 1.5rem;
}

/* Professional styling for services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    padding: 1.5rem;
    background: var(--soft-green, #c8e6c9);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color, #7fb069);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 176, 105, 0.2);
}