/* Import Google Fonts for a feminine and elegant feel */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #dfdfee; /* Updated background color */
    padding: 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #00008B; /* Dark Blue for headings */
    margin-bottom: 10px;
}

header, nav, main, footer {
    margin-bottom: 20px;
}

/* Navigation styling with colors matching footer .resources */
nav {
    background-color: #00008B; /* Dark Blue background */
    padding: 10px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;  /* Allow nav items to wrap onto additional rows */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #E6E6FA; /* Lavender text color for nav links */
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

/* General Section Styling */
section {
    margin-bottom: 40px;
}

section p, section li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Inline Images – styled to align with text */
.inline-image {
    max-width: 40%;
    height: auto;
    margin: 0 20px 20px 0;
    float: left;
}

/* Clear floats for sections */
section::after {
    content: "";
    display: table;
    clear: both;
}

/* Full-width images */
.full-width-image {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

/* List styling for specific sections */
.clients ul, .sessions ul, .journeys ul .article-content u1 {
    list-style: disc inside;
    padding-left: 20px;
}

/* FAQ Accordion Styles */
.faq-question {
    cursor: pointer;
}
.toggle-icon {
    font-weight: bold;
    margin-right: 10px;
}
.faq-answer {
    display: none;
    margin-top: 10px;
}

/* Footer Styling */
footer {
    background-color: #00008B; /* Dark Blue */
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #E6E6FA; /* Lavender for links */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Logo styling in the footer */
footer .logo {
    margin-bottom: 20px;
}

footer .logo img {
    max-width: 150px;
    height: auto;
}

/* Additional Resources links */
footer .resources ul {
    list-style: none;
    padding: 0;
}

footer .resources ul li {
    display: inline;
    margin: 0 10px;
}

/* Copyright styling */
footer .copyright {
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .inline-image {
	float: none;
	max-width: 100%;
	display: block;
	margin: 0 auto 20px auto;
    }

    /* Adjust nav spacing for smaller screens */
    nav ul li {
	margin: 5px 10px;
    }
}
