:root {
    --bg-color: #faf8f5;
    --white: #ffffff;
    --text-main: #2b2b2b;
    --text-muted: #666666;
    --primary-accent: #87a8c3;
    --primary-dark: #2c3e50;
    --border-light: #eae5de;
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info span {
    margin-right: 20px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--primary-accent);
}

header {
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-area {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--primary-accent);
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

.success-banner {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 16px;
    text-align: center;
    font-weight: 500;
    border-bottom: 1px solid #c8e6c9;
    font-size: 0.95rem;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 60px auto 20px auto;
    padding: 0 20px;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    max-width: 450px;
    height: 550px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Added -30px margin to pull the section up */
.profile-section {
    background-color: var(--white);
    padding: 60px 20px;
    margin-top: -30px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 3;
}

.intro-banner {
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 60px 20px;
    text-align: center;
}

.intro-banner h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.intro-banner p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-title-wrapper p {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--primary-accent);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.service-link {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-accent);
}

footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-col p, .footer-col a {
    color: #ccc;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-ritma-container {
    margin-top: 20px;
}

.footer-ritma-logo {
    max-width: 160px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.footer-ritma-text {
    color: #bbb;
    font-size: 0.82rem;
    line-height: 1.4;
    font-weight: 500;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

@media(max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .hero-image {
        width: 100%;
        height: 450px;
    }

    nav {
        display: none;
    }

    .top-bar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}
```[cite: 4]
