:root {
    /* Primary Color Palette - High Contrast Pastels */
    --primary-sage: #a9b9a0;
    --primary-lavender: #a798b9;
    --primary-peach: #cdac98;
    --primary-mint: #8dc6c4;
    --primary-rose: #e7cace;
    
    /* Light Shades */
    --light-sage: #f0f7ec;
    --light-lavender: #e2dee6;
    --light-peach: #fff6f2;
    --light-mint: #ccd9d9;
    --light-rose: #ecdddf;
    
    /* Dark Shades */
    --dark-sage: #748459;
    --dark-lavender: #867d91;
    --dark-peach: #b1855c;
    --dark-mint: #92c2c9;
    --dark-rose: #ad8b8a;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #454040;
    --gray-light: #F8F9FA;
    --gray-medium: #797d83;
    --gray-dark: #4f555a;
    
    /* Typography */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --font-size-h1: 2.5rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.75rem;
    --font-size-h4: 1.5rem;
    --font-size-h5: 1.25rem;
    --font-size-h6: 1rem;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-lavender) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-peach) 0%, var(--primary-mint) 100%);
    --gradient-tertiary: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-sage) 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

/* Fix Bootstrap compatibility - override Tailwind reset */
.navbar-nav {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.navbar-nav .nav-item {
    list-style: none !important;
}

ul.navbar-nav {
    display: flex !important;
    flex-direction: row !important;
}

/* Ensure Bootstrap container and grid work properly */
.container, .container-fluid {
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -15px !important;
    margin-left: -15px !important;
}

[class*="col-"] {
    position: relative !important;
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }

p {
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
}

/* Header Styles */
.navbar {
    background: var(--gradient-primary);
    padding: 1rem 0;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--white) !important;
    font-size: 1.51rem;
    font-weight: 700;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--light-sage) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
    background: var(--gradient-secondary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-yoga.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    font-size: var(--font-size-h1);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section h2 {
    color: var(--light-peach);
    font-size: var(--font-size-h3);
    margin-bottom: 1.72rem;
    font-weight: 400;
}

.hero-section p {
    color: var(--white);
    font-size: var(--font-size-large);
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    background: var(--gray-light);
    padding: 5rem 0;
}

.about-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.about-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 10px 27px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-mint);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-medium);
    text-align: center;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.services-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.services-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.services-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 6px solid var(--primary-sage);
}

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    text-align: left;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.67rem;
}

.service-content li {
    color: var(--gray-medium);
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-content li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-mint);
}

.service-price {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 29px;
    text-align: center;
    font-weight: 600;
    font-size: var(--font-size-large);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.70rem; }
.mb-5 { margin-bottom: 3rem; }
.py-5 { padding: 3rem 0; }

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Features Section */
.features-section {
    background: var(--light-sage);
    padding: 5rem 0;
}

.features-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.features-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.features-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Price Plan Section */
.priceplan-section {
    background: var(--white);
    padding: 5rem 0;
}

.priceplan-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.priceplan-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.priceplan-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.price-card {
    background: var(--white);
    border: 2px solid var(--light-sage);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.price-card.featured {
    border-color: var(--primary-mint);
    background: var(--gradient-tertiary);
    color: var(--white);
    transform: scale(1.05);
}

.price-card.featured h4,
.price-card.featured p {
    color: var(--white);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-peach);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.93rem;
    font-weight: 600;
}

.price-amount {
    font-size: 2.56rem;
    font-weight: 700;
    color: var(--primary-mint);
    margin: 1rem 0;
}

.price-card.featured .price-amount {
    color: var(--white);
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.price-card li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-mint);
}

.price-card.featured li:before {
    color: var(--white);
}

/* Team Section */
.team-section {
    background: var(--gray-light);
    padding: 5rem 0;
}

.team-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.team-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.team-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.team-card {
    background: var(--white);
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h4 {
    color: var(--dark-sage);
    margin-bottom: 0.68rem;
}

.team-content p {
    color: var(--primary-lavender);
    margin: 0;
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    background: var(--white);
    padding: 5rem 0;
}

.reviews-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.reviews-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.reviews-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.review-card {
    background: var(--light-mint);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-card:before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary-mint);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: var(--gray-dark);
}

.review-author {
    font-weight: 600;
    color: var(--dark-sage);
    text-align: right;
}

/* Contact Section */
.contact-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    color: var(--white);
}

.contact-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.contact-section h3 {
    color: var(--light-peach);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-section p {
    color: var(--white);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.64rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-sage);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-mint);
    box-shadow: 0 0 0 3px rgba(190, 238, 242, 0.20);
}

.form-label {
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 500;
    color: var(--dark-sage);
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-info {
    text-align: center;
}

.contact-info p {
    margin-bottom: 0.62rem;
    font-size: var(--font-size-large);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer h4 {
    color: var(--primary-sage);
    margin-bottom: 1rem;
}

.footer p {
    color: var(--gray-light);
    margin-bottom: 0.66rem;
}

.footer a {
    color: var(--primary-mint);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--light-mint);
}

.footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    padding: 5rem 0;
}

.faq-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.faq-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.faq-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--light-sage);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-sage);
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover,
.faq-question.active {
    background-color: var(--light-sage);
}

.faq-question:after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active:after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    color: var(--gray-dark);
    display: none;
}

.faq-answer.open {
    padding: 1.5rem;
}

/* Case Studies Section */
.casestudy-section {
    background: var(--light-peach);
    padding: 5rem 0;
}

.casestudy-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.casestudy-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.casestudy-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.casestudy-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.casestudy-card:hover {
    transform: translateY(-5px);
}

.casestudy-card h4 {
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.casestudy-card p {
    color: var(--gray-medium);
    margin: 0;
    text-align: left;
}

/* Process Section */
.process-section {
    background: var(--white);
    padding: 5rem 0;
}

.process-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.process-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.process-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.process-step {
    background: var(--light-mint);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    background: var(--gradient-primary);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.51rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--gray-medium);
    margin: 0;
    text-align: center;
}

/* Timeline Section */
.timeline-section {
    background: var(--light-lavender);
    padding: 5rem 0;
}

.timeline-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.timeline-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.timeline-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-sage);
    transform: translateX(-50%);
}

.timeline-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    width: calc(50% - 2rem);
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: var(--primary-mint);
    border-radius: 50%;
    border: 4px solid var(--white);
}

.timeline-item:nth-child(odd)::before {
    right: -42px;
}

.timeline-item:nth-child(even)::before {
    left: -42px;
}

.timeline-item h4 {
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.timeline-item p {
    color: var(--gray-medium);
    margin: 0;
    text-align: left;
}

/* Career Section */
.career-section {
    background: var(--white);
    padding: 5rem 0;
}

.career-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.career-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.career-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.career-card {
    background: var(--light-rose);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
}

.career-card h4 {
    color: var(--dark-sage);
    margin-bottom: 0.59rem;
}

.career-card p {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    text-align: left;
}

.career-card p:last-child {
    margin: 0;
}

/* Core Info Section */
.coreinfo-section {
    background: var(--light-sage);
    padding: 5rem 0;
}

.coreinfo-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.coreinfo-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.coreinfo-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.coreinfo-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.coreinfo-card:hover {
    transform: translateY(-5px);
}

.coreinfo-card h4 {
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.coreinfo-card p {
    color: var(--gray-medium);
    margin: 0;
    text-align: center;
}

/* Blog Section */
.blog-section {
    background: var(--white);
    padding: 5rem 0;
}

.blog-section h2 {
    color: var(--dark-sage);
    text-align: center;
    margin-bottom: 1rem;
}

.blog-section h3 {
    color: var(--primary-lavender);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.blog-section p {
    color: var(--gray-dark);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    color: var(--dark-sage);
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    text-align: left;
}

.blog-content a {
    color: var(--primary-mint);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-content a:hover {
    color: var(--dark-mint);
}

/* Responsive adjustments for timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .timeline-item::before {
        left: -42px !important;
        right: auto !important;
    }
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
