/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #fffaf0;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fdf6e3;
    border-bottom: 1px solid #e0d6c1;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .logo {
    height: 60px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #8b5e3c;
    font-weight: 600;
}

nav a:hover {
    color: #d4af7f;
}

.cta-button {
    background-color: #d4af7f;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #b58553;
}

/* Hero Section */
.hero, .hero-services, .hero-about, .hero-booking, .hero-contact, .hero-body-sculpt, .hero-blog {
    text-align: center;
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    color: #4d3c2f;
}

.hero h1, .hero-services h1, .hero-about h1, .hero-booking h1, .hero-contact h1, .hero-body-sculpt h1, .hero-blog h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Sections */
section {
    padding: 60px 20px;
}

.section-intro, .section-services-home, .section-testimonials, .about-content, .service-list, .body-sculpt-details, .blog-posts {
    max-width: 1100px;
    margin: auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #8b5e3c;
}

p, li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Cards for services */
.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.card {
    background-color: #fffaf0;
    border: 1px solid #e0d6c1;
    border-radius: 15px;
    padding: 20px;
    margin: 15px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Forms */
input, textarea, button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #d4af7f;
}

button {
    background-color: #d4af7f;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #b58553;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #fdf6e3;
    color: #8b5e3c;
    border-top: 1px solid #e0d6c1;
}

/* Blog articles */
.blog-pos
