        /* Perfect Human Section */
        .perfect-human-section {
            background: #fefdf9;
            padding: 6rem 0;
        }

        .section-container {
            width: 92vw;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 600;
            color: var(--green700);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-divider {
            width: 60px;
            height: 3px;
            background: #dc3545;
            margin: 0 auto;
            border-radius: 2px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .card {
            background: #ffffff;
            padding: 2.5rem 2rem;
            border-radius: var(--radius-lg);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .card-icon {
            width: 48px;
            height: 48px;
            background: #ECE8E5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #550040;
        }

        .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #333333;
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .card-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #4a5568;
            margin-bottom: 0.5rem;
        }

        .card-accent {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #d4a574 0%, #f4d03f 50%, #d4a574 100%);
            border-radius: 2px;
            margin-top: 0.5rem;
        }

        .quote-section {
            text-align: center;
            margin-bottom: 3rem;
            padding: 0 2rem;
        }

        .quote-text {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            font-style: italic;
            color: #6b7280;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section {
            text-align: center;
        }

        .sacred-space-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: #1B444B;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: var(--radius-pill);
            box-shadow: 0 8px 24px rgba(27, 68, 75, 0.3);
            transition: all 0.3s ease;
        }

        .sacred-space-button:hover {
            background: #163a3f;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(27, 68, 75, 0.4);
        }

        /* Responsive Design for Perfect Human Section */
        @media (max-width: 992px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .perfect-human-section {
                padding: 4rem 0;
            }
        }

        @media (max-width: 768px) {
            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .card {
                padding: 2rem 1.5rem;
            }
            
            .section-container {
                width: 96vw;
            }
            
            .quote-section {
                padding: 0 1rem;
            }
        }
