
.online-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.online-service-wrapper {
    display: flex;
    gap: 30px;
    padding: 60px 0;
}

.online-sidebar-section {
    flex: 0 0 300px;
}

.online-content-section {
    flex: 1;
}

.online-sidebar-box,
.online-content-box {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
}

.online-shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.online-rounded {
    border-radius: 10px;
}

.online-sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
}

.online-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.online-menu-list li {
    margin-bottom: 10px;
}

.online-menu-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.online-menu-list a:hover {
    background: #f8f9fa;
    color: #ff6b6b;
}

.online-menu-list .online-active a {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
}

.online-img-fluid {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.service-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.astrology-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 4px solid #ff6b6b;
    transition: transform 0.3s ease;
}

.astrology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.astrology-card h5 {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-weight: 600;
}

.significance-section {
    background: linear-gradient(135deg, #f0f5ff 0%, #e8f4f8 100%);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.significance-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.astrology-types {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.type-highlight {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.consultation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.feature-card h5 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .online-service-wrapper {
        flex-direction: column;
    }

    .online-sidebar-section {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 1.5rem;
    }

    .consultation-features {
        grid-template-columns: 1fr;
    }
}