/* Ayurvedha Page Specific Styles */
.ayurveda-section {
    padding: 40px 0;
    background-color: #fff;
    background-image: radial-gradient(#00B050 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-position: 0 0;
    background-color: rgba(255, 255, 255, 0.97);
    background-blend-mode: overlay;
}

/* Header Styles */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.section-title {
    font-size: 28px;
    color: #00B050;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
}

.section-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, #00B050, transparent);
    opacity: 0.3;
}

/* Top Content Styles */
.ayurveda-top-content {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.ayurveda-image-container {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 10px solid #fff;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.ayurveda-intro-text {
    flex: 1;
}

.content-heading {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.ayurveda-intro-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

/* Middle Content Styles */
.ayurveda-middle-content {
    margin-bottom: 60px;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #00B050;
}

.ayurveda-middle-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.ayurveda-middle-content p:last-child {
    margin-bottom: 0;
}

/* Bottom Content Styles */
.ayurveda-bottom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.content-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e0f2f1;
}

.content-card .content-heading {
    font-size: 24px;
    color: #00B050;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.content-card .content-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #00B050;
    border-radius: 2px;
}

.content-card p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    text-align: justify;
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .ayurveda-top-content {
        flex-direction: column;
        gap: 40px;
    }

    .ayurveda-image-container {
        max-width: 100%;
        order: -1;
        /* Image on top on mobile */
    }

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

@media screen and (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .ayurveda-section {
        padding: 60px 0;
    }

    .content-heading {
        font-size: 26px;
    }

    .content-card {
        padding: 30px 20px;
    }
}