/* Philosophy Page Specific Styles */

.philosophy-hero {
    text-align: center;
    margin: 4rem 0 6rem;
}

.philosophy-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.philosophy-hero .subtitle {
    font-size: 1.3rem;
    color: #666;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
    align-items: start;
}

.philosophy-text {
    background: rgba(255, 255, 255, 0.7);
    padding: 4rem;
    border-radius: 20px;
    border-left: 5px solid #4e7391;
}

.philosophy-text .opening {
    font-size: 1.5rem;
    color: #4e7391;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.philosophy-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.philosophy-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #6b9080;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(107, 144, 128, 0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.highlight-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.philosophy-quote {
    background: linear-gradient(135deg, rgba(78, 115, 145, 0.1), rgba(107, 144, 128, 0.1));
    padding: 5rem 3rem;
    border-radius: 20px;
    margin-bottom: 6rem;
    text-align: center;
}

.philosophy-quote blockquote {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.philosophy-quote blockquote::before {
    content: '"';
    font-size: 5rem;
    color: #4e7391;
    opacity: 0.3;
    position: absolute;
    top: -2rem;
    left: -2rem;
}

@media (max-width: 968px) {
    .philosophy-hero h1 {
        font-size: 2.8rem;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .philosophy-text {
        padding: 2.5rem;
    }

    .philosophy-text .opening {
        font-size: 1.2rem;
    }

    .philosophy-text p {
        font-size: 1.05rem;
    }

    .philosophy-quote blockquote {
        font-size: 1.5rem;
    }

    .philosophy-quote blockquote::before {
        font-size: 3rem;
        top: -1rem;
        left: -1rem;
    }
}