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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.navbar {
    background-color: #6B4C9A;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #E8D5F2;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8B6FB0 0%, #6B4C9A 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: white;
    color: #6B4C9A;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #E8D5F2;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: #6B4C9A;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background-color: #8B6FB0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #6B4C9A;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background-color: #8B6FB0;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}

/* Section Headings */
.section-heading {
    text-align: center;
    color: #6B4C9A;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8B6FB0 0%, #6B4C9A 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Story Section */
.story-section {
    padding: 5rem 2rem;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.story-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.story-text h2 {
    color: #6B4C9A;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.values-section h2 {
    text-align: center;
    color: #6B4C9A;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #8B6FB0;
}

.value-card h3 {
    color: #6B4C9A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 5rem 2rem;
}

.service-detail {
    margin-bottom: 4rem;
}

.service-detail h2 {
    color: #6B4C9A;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-detail p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.service-list li {
    color: #555;
    line-height: 2;
    margin-bottom: 0.5rem;
}

.service-note {
    font-style: italic;
    color: #8B6FB0;
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #6B4C9A;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    color: #6B4C9A;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-block p {
    color: #555;
    line-height: 1.8;
}

.contact-form-placeholder {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-form-placeholder h3 {
    color: #6B4C9A;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.form-note {
    color: #666;
    margin-bottom: 1.5rem;
}

.placeholder-box {
    background: white;
    padding: 3rem;
    border-radius: 4px;
    text-align: center;
    border: 2px dashed #E8D5F2;
}

.placeholder-box p {
    color: #8B6FB0;
    font-size: 1.1rem;
    line-height: 2;
}

/* Footer */
footer {
    background-color: #6B4C9A;
    color: white;
    text-align: center;
    padding: 2rem;
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}
