/* Color Palette */
:root {
    --forest-green: #2d5a27;
    --sky-blue: #87ceeb;
    --bone-white: #f9f7f2;
    --white: #ffffff;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    /* Updated background gradient */
    background: linear-gradient(180deg, #3992f3 0%, #4d9bef 50%, #ffffff 100%);
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

header {
    padding: 60px 20px;
    background-color: var(--white);
    text-align: center;
}

section {
    padding: 40px 20px;
    text-align: center;
    background-color: var(--bone-white);
}

/* Specific section highlights */
section:nth-of-type(even) {
    background-color: var(--white);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--forest-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #1e3d1a;
}

/* Footer styling */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 20px;
    text-align: center;
}

footer a {
    color: var(--sky-blue);
    text-decoration: none;
}

.legal-address {
    margin-top: 20px;
    font-size: 0.85em;
    color: #888;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: block;
    margin: 10px 0;
}

/* Card Container */
.carousel-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

/* Card Styling with Gradient */
.card {
    background: linear-gradient(135deg, #f9f7f2 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-10px); }

/* Placeholder Images */
.card-img {
    width: 100px;
    height: 100px;
    background-color: #87ceeb; /* Sky blue placeholder */
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Container for stacked content blocks */
.content-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Optional: Alternate background colors for visual flow */
.content-section:nth-of-type(even) {
    background: var(--bone-white);
}

.feature-icon {
    font-size: 3rem;
    color: var(--sky-blue);
    min-width: 80px;
    text-align: center;
}

.card-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden; /* Important: clips the image to the circle */
    background-color: #87ceeb; /* Fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Important: ensures the photo fills the circle without stretching */
}

.content-section h3 { color: var(--forest-green); margin-top: 0; }

/* Typography Styles */
.card h3 { font-family: 'Georgia', serif; color: #2d5a27; margin-bottom: 10px; }
.card p { font-family: 'Arial', sans-serif; font-size: 0.9em; color: #666; }