        /* Sacred Waters Section */
        .sacred-waters-section {
            background: linear-gradient(rgba(27, 68, 75, 0.7), rgba(27, 68, 75, 0.7)), url('../assets/sacred.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            padding: 6rem 0;
            color: #ffffff;
        }

        .white-title {
            color: #ffffff !important;
        }

        .red-divider {
            background: linear-gradient(90deg, #d4a574 0%, #f4d03f 50%, #d4a574 100%) !important;
        }

        .sacred-waters-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .main-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .content-paragraph {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

        .highlight-boxes {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .highlight-box {
            background: rgba(255, 255, 255, 0.15);
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .highlight-box:hover {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .highlight-text {
            font-size: 1.1rem;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .highlight-accent {
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #d4a574 0%, #f4d03f 50%, #d4a574 100%);
            border-radius: 1px;
        }

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

        .sacred-quote-text {
            font-size: clamp(1.2rem, 2.2vw, 1.6rem);
            font-style: italic;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
        }

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

        .discover-journey-button:hover {
            background: #6b2c91;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(107, 44, 145, 0.3);
        }

        /* Responsive Design for Sacred Waters Section */
        @media (max-width: 992px) {
            .sacred-waters-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .sacred-waters-section {
                padding: 4rem 0;
            }
        }

        @media (max-width: 768px) {
            .highlight-boxes {
                gap: 1rem;
            }
            
            .highlight-box {
                padding: 1.2rem;
            }
            
            .sacred-quote-section {
                padding: 0 1rem;
            }
        }
