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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2e2e2e;
    background-color: #f8f8fa;
}

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

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    background: #221f3e;
    color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.nav-links li a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links li a:hover,
.nav-links li a.active {
    color: #c4b5fd;
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #4e2a8e 0%, #341f66 100%);
    color: #ffffff;
    padding: 6rem 0;
    text-align: center;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}
.btn-primary {
    background: #8753ca;
    color: #ffffff;
}
.btn-primary:hover {
    background: #6b36b3;
}
.btn-secondary {
    background: #ffffff;
    color: #8753ca;
    border: 2px solid #8753ca;
}
.btn-secondary:hover {
    background: #8753ca;
    color: #ffffff;
}

/* Section */
.section {
    padding: 4rem 0;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #4e2a8e;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card h3 {
    margin-bottom: 1rem;
    color: #4e2a8e;
}
.card p {
    font-size: 0.95rem;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Preview */
.about-preview {
    background: #f0ecfe;
    border-top: 1px solid #e1d9fa;
}
.about-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4e2a8e;
}
.about-text p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1rem;
}

/* Page hero */
.page-hero {
    background: linear-gradient(120deg, #4e2a8e 0%, #341f66 100%);
    color: #ffffff;
    padding: 4rem 0 3rem;
    text-align: center;
    margin-top: -1px;
}
.page-hero h1 {
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
}
.page-hero p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Service page */
.service-list .service-item {
    margin-bottom: 2rem;
}
.service-list .service-item h2 {
    color: #4e2a8e;
    margin-bottom: 0.5rem;
}
.service-list .service-item p {
    font-size: 0.95rem;
}
.service-cta {
    text-align: center;
    background: #f0ecfe;
    padding: 3rem 1rem;
    margin-top: 2rem;
}
.service-cta h2 {
    font-size: 1.7rem;
    color: #4e2a8e;
    margin-bottom: 0.5rem;
}
.service-cta p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* About page values list */
.values-list {
    list-style: none;
    margin-top: 1rem;
    padding-left: 1rem;
}
.values-list li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Contact page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}
.contact-details,
.contact-form-wrapper {
    flex: 1 1 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.contact-details h2,
.contact-form-wrapper h2 {
    color: #4e2a8e;
    margin-bottom: 1rem;
}
.contact-details p,
.contact-details a {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.contact-details a {
    color: #8753ca;
    text-decoration: underline;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: #4e2a8e;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8753ca;
    box-shadow: 0 0 0 2px rgba(135, 83, 202, 0.2);
}
.contact-form button {
    width: 100%;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: #221f3e;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 3rem;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-left h3 {
    margin-bottom: 0.5rem;
}
.footer-left p {
    font-size: 0.9rem;
}
.footer-right ul {
    list-style: none;
}
.footer-right ul li {
    margin-bottom: 0.4rem;
}
.footer-right ul li a {
    color: #c4b5fd;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-right ul li a:hover,
.footer-right ul li a.active {
    color: #ffffff;
}
.copyright {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #b6b1d0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .cards {
        gap: 1rem;
    }
    .card {
        padding: 1.5rem;
    }
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
    .contact-grid {
        flex-direction: column;
    }
}