:root {
    --primary-color: #f09ea8; /* Pink shade from image */
    --primary-hover: #e08e98;
    --text-dark: #333333;
    --text-light: #777777;
    --bg-light: #fdfaf6;
    --bg-white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 13px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-light {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-light:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header Re-design */
.main-header {
    border-bottom: 1px solid #f2eaea;
    padding-top: 20px;
    padding-bottom: 10px;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.logo-placeholder {
    width: 24px; /* Balance the cart icon */
}

.logo {
    display: flex;
    justify-content: center;
}

.main-logo-img {
    height: 60px; /* Adjust based on exact logo size */
    object-fit: contain;
}

.cart-icon {
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
}

.main-nav {
    width: 100%;
}

.main-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 40px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 400;
    color: #c98c94; /* Light pinkish text from screenshot */
    text-decoration: none;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Hero Section Split Layout */
.hero-split {
    display: flex;
    min-height: 80vh;
    background-color: var(--bg-white);
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.hero-content {
    max-width: 400px;
    text-align: center;
}

.hero-logo-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.hero-left h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: #444; /* Dark gray */
    line-height: 1.2;
    margin-bottom: 40px;
}

.hero-right {
    flex: 1;
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
}

.hero-person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Banners */
.banner-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.banner-split.reverse {
    flex-direction: row-reverse;
}

.banner-img {
    flex: 1;
    min-width: 300px;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-text {
    flex: 1;
    min-width: 300px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.banner-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.banner-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text .subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 400;
}

.about-text h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 4px;
}

/* Virtual Consultation */
.virtual-consultation {
    text-align: center;
    padding: 40px 20px;
}

.virtual-consultation h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.divider {
    width: 150px;
    height: 2px;
    background-color: #8ed1c8; /* Teal color from image line */
    margin: 0 auto;
}

/* Process Section */
.process-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.process-section h2 {
    font-family: var(--font-heading);
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 400;
}

.process-steps {
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f7e1e4;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-right: 20px;
}

.step:nth-child(even) .step-icon {
    background-color: #e2f1f0;
    color: #4ebfba;
}

.step-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-info h4 {
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    text-align: center;
}

.features-section h2 {
    font-family: var(--font-heading);
    margin-bottom: 60px;
    font-size: 2rem;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-item h3 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.cta-banner p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.main-footer {
    padding: 80px 20px 40px;
    background-color: var(--bg-white);
}

.main-footer h3 {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.main-footer p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.newsletter {
    max-width: 400px;
    margin: 0 auto 40px;
    display: flex;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-right: none;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.newsletter .btn {
    border-radius: 0 4px 4px 0;
}

.footer-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }
    
    .hero-right {
        min-height: 400px;
    }

    .about-content {
        flex-direction: column;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .banner-text {
        padding: 40px 20px;
    }
}
