/* Core Philosophy Page Styles */

.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 40px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #334155;
}

.container h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #0f172a;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.pull-quote {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 30px;
    margin: 40px 0;
    font-size: 1.3rem;
    font-style: italic;
    color: #1e293b;
    line-height: 1.6;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-icon {
    display: inline-block;
    background: #0f172a;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0f172a;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.list-check {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.list-check li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    border-bottom: 1px solid #f1f5f9;
}

.list-check li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 15px;
    color: #10b981;
    font-weight: bold;
    font-size: 1.3rem;
}

.list-check li strong {
    color: #0f172a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .container h2 {
        font-size: 1.6rem;
    }

    .pull-quote {
        font-size: 1.1rem;
        padding: 20px;
    }
}
