/* Seven Pillars Page Specific Styling */
.pillars-hero {
    background-color: #4285f4;
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 50px;
    background-image: linear-gradient(rgba(66, 133, 244, 0.85), rgba(51, 103, 214, 0.9));
}

.pillars-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pillars-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.pillars-intro {
    padding: 50px 0;
    margin-bottom: 40px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.intro-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.intro-video {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-video img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(66, 133, 244, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.pillars-list {
    padding: 50px 0;
    background-color: #f9f9fc;
}

.pillar-item {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.pillar-number {
    width: 60px;
    height: 60px;
    background-color: #4285f4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.pillar-content {
    flex: 1;
}

.pillar-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.pillar-content p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
}

.pillar-tips {
    background-color: #f5f7ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.pillar-tips h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #4285f4;
}

.pillar-tips ul {
    list-style-type: disc;
    padding-left: 20px;
}

.pillar-tips ul li {
    margin-bottom: 8px;
    color: #444;
}

.pillars-benefits {
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: #f5f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #4285f4;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    color: #555;
    line-height: 1.6;
}

.success-stories {
    padding: 60px 0;
    background-color: #f9f9fc;
}

.stories-slider {
    max-width: 900px;
    margin: 0 auto;
}

.story-slide {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.story-before-after {
    display: flex;
    height: 300px;
}

.story-before-after img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.story-text {
    padding: 30px;
}

.story-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.story-text p {
    color: #555;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pillars-hero h1 {
        font-size: 2.2rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .pillar-item {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .story-before-after {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .pillars-hero {
        padding: 60px 0 40px;
    }
    
    .pillars-hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
    
    .story-before-after {
        flex-direction: column;
        height: auto;
    }
    
    .story-before-after img {
        width: 100%;
        height: 200px;
    }
}