# style.css content
style_css_content = """
:root {
    --primary-color: #4CAF50; /* Green for nature/well-being */
    --secondary-color: #2196F3; /* Blue for sky/clarity */
    --accent-color: #FFC107; /* Amber for warmth/energy */
    --text-color: #333;
    --light-bg: #f4f4f4;
    --dark-bg: #222;
    --white: #fff;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: var(--dark-bg);
    color: var(--white);
    padding: 1rem 0;
    border-bottom: var(--primary-color) 4px solid;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    float: left;
    margin: 0;
    padding: 0;
    font-size: 2em;
    font-weight: 600;
}

header nav {
    float: right;
    margin-top: 5px;
}

header ul {
    list-style: none;
}

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1em;
    transition: color 0.3s ease-in-out;
    font-weight: 500;
}

header a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg'); /* Placeholder for a background image */
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    color: var(--white);
    background: var(--secondary-color);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px; /* More modern, rounded button */
    transition: background-color 0.3s ease-in-out, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 100px 0;
    text-align: center;
}

section:nth-of-type(even) {
    background: var(--light-bg);
}

section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-description {
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 2em;
    font-weight: 600;
}

.service-card p {
    font-size: 1.1em;
    margin-bottom: 30px;
    flex-grow: 1;
    color: #555;
}

.service-img {
    width: 120px; /* Smaller size for modern icons */
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: var(--white); /* Ensure background for transparent icons */
}

/* About and Contact Sections */
.about-section p, .contact-section .contact-text {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.15em;
    color: #555;
}

.contact-section address {
    margin-top: 30px;
    font-style: normal;
    font-size: 1.1em;
    line-height: 2;
    color: #555;
}

/* Terms Section */
.terms-section {
    text-align: left;
    padding: 80px 0;
}

.terms-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.terms-section h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 1.8em;
}

.terms-section h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.4em;
}

.terms-section p, .terms-section li {
    font-size: 1.05em;
    margin-bottom: 10px;
    line-height: 1.8;
}

.terms-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    border-top: var(--primary-color) 4px solid;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: var(--accent-color);
}

footer address {
    margin-top: 15px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    header h1 {
        font-size: 1.8em;
    }
    header nav {
        margin-top: 8px;
    }
    header nav li {
        padding: 0 10px;
    }
    .hero h2 {
        font-size: 2.8em;
    }
    .hero p {
        font-size: 1.1em;
    }
    section h2 {
        font-size: 2.5em;
    }
    .service-card h3 {
        font-size: 1.6em;
    }
    .service-card p {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    header h1, header nav {
        float: none;
        text-align: center;
    }

    header nav ul {
        padding-top: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav li {
        display: block;
        padding: 5px 10px;
    }

    .hero {
        padding: 80px 0;
    }
    .hero h2 {
        font-size: 2.2em;
    }
    .hero p {
        font-size: 1em;
    }

    section {
        padding: 60px 0;
    }
    section h2 {
        font-size: 2em;
    }
    .section-description {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px;
    }

    .about-section p, .contact-section .contact-text {
        font-size: 1em;
    }
    .contact-section address {
        font-size: 1em;
    }
    .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}

