/* Design Philosophy Page Styles */

.philosophy-hero {
    background: linear-gradient(135deg, #00727C 0%, #004d54 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
}

.philosophy-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.philosophy-hero .hero-subtitle {
    font-size: 22px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Core Requirements Section */
.core-requirements {
    padding: 80px 20px;
    background: #f8f9fa;
}

.core-requirements h2 {
    text-align: center;
    font-size: 36px;
    color: #4F4B45;
    margin-bottom: 50px;
}

.requirements-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.requirement-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.requirement-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.requirement-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.requirement-card h3 {
    font-size: 22px;
    color: #00727C;
    margin-bottom: 15px;
}

.requirement-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Philosophy Story Section */
.philosophy-story {
    padding: 80px 20px;
    background: #f8f9fa;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-section {
    margin-bottom: 50px;
}

.story-section h3 {
    font-size: 28px;
    color: #4F4B45;
    margin-bottom: 20px;
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.quote-section {
    text-align: center;
    margin: 60px 0;
}

.quote-section blockquote {
    font-size: 24px;
    color: #00727C;
    font-style: italic;
    margin: 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.quote-section blockquote:before {
    content: """;
    font-size: 60px;
    color: #00727C;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
}

/* Design Principles Section */
.design-principles {
    padding: 80px 20px;
    background: #f8f9fa;
}

.design-principles h2 {
    text-align: center;
    font-size: 36px;
    color: #4F4B45;
    margin-bottom: 50px;
}

.principles-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.principle {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #00727C;
}

.principle h3 {
    font-size: 24px;
    color: #00727C;
    margin-bottom: 15px;
}

.principle p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .philosophy-hero h1 {
        font-size: 36px;
    }
    
    .philosophy-hero .hero-subtitle {
        font-size: 20px;
    }
    
    .requirement-row {
        grid-template-columns: 1fr;
    }
    
    .story-section h3 {
        font-size: 24px;
    }
    
    .quote-section blockquote {
        font-size: 20px;
        padding: 30px;
    }
    
    .principle {
        padding: 30px;
    }
}