* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Garamond', 'Georgia', serif;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            padding: 20px;
            line-height: 1.7;
            color: #2c3e50;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            background: #f8f9fa;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #8b7355 0%, #6b5645 100%);
            color: #fff;
            padding: 40px;
            text-align: center;
            border-bottom: 3px solid #d4af37;
        }
        
        .header h1 {
            font-size: 2.2em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .header p {
            font-size: 1.1em;
            font-style: italic;
            opacity: 0.95;
        }
        
        .scripture-box {
            background: linear-gradient(135deg, #fff9e6 0%, #f0e6d2 100%);
            border-left: 4px solid #d4af37;
            padding: 20px;
            margin: 30px;
            border-radius: 8px;
            font-style: italic;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .scripture-box p {
            margin-bottom: 10px;
        }
        
        .scripture-ref {
            text-align: right;
            font-weight: bold;
            color: #6b5645;
            margin-top: 10px;
        }
        
        .nav-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 30px;
            flex-wrap: wrap;
        }
        
        .nav-btn {
            background: linear-gradient(135deg, #8b7355 0%, #6b5645 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1em;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        }
        
        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, #6b5645 0%, #5a4635 100%);
        }
        
        .nav-btn.active {
            background: linear-gradient(135deg, #d4af37 0%, #c9a32a 100%);
            color: #2c3e50;
        }
        
        .content {
            padding: 40px;
            display: none;
        }
        
        .content.active {
            display: block;
            animation: fadeIn 0.5s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .section-title {
            font-size: 2em;
            color: #6b5645;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #d4af37;
        }
        
        .prayer-box {
            background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f0 100%);
            border-left: 4px solid #5a9fb8;
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
            font-style: italic;
        }
        
        .prayer-title {
            font-weight: bold;
            color: #2c5f75;
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        
        .question-section {
            background: white;
            border-radius: 8px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .question-section h3 {
            color: #6b5645;
            margin-bottom: 15px;
            font-size: 1.3em;
        }
        
        .question-section p {
            margin: 10px 0;
        }
        
        .question {
            margin: 15px 0;
            padding: 10px 0;
        }
        
        .question label {
            display: block;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        textarea {
            width: 100%;
            min-height: 100px;
            padding: 12px;
            border: 2px solid #d4af37;
            border-radius: 6px;
            font-family: 'Georgia', serif;
            font-size: 1em;
            resize: vertical;
            transition: border-color 0.3s;
        }
        
        textarea:focus {
            outline: none;
            border-color: #6b5645;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        
        .declaration-box {
            background: linear-gradient(135deg, #fef5e7 0%, #f9e79f 100%);
            border: 3px solid #d4af37;
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            font-size: 1.1em;
            color: #6b5645;
        }
        
        .application-box {
            background: #f0f8ff;
            border-left: 4px solid #4a90e2;
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
        }
        
        .application-box h3 {
            color: #2c5f75;
            margin-bottom: 15px;
        }
        
        .tools-list {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .tools-list ol {
            margin-left: 25px;
        }
        
        .tools-list li {
            margin: 15px 0;
            line-height: 1.8;
        }
        
        .important-note {
            background: #fff3cd;
            border: 2px solid #ffc107;
            padding: 20px;
            margin: 25px 0;
            border-radius: 8px;
        }
        
        .important-note strong {
            color: #856404;
            font-size: 1.1em;
        }

        .content-image {
        display: block;
        margin: 0 auto;
        max-width: 60%;
        height: auto;
        }

        
        ul {
            margin: 15px 0 15px 30px;
        }
        
        li {
            margin: 8px 0;
        }
        
        .visual-placeholder {
            background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
            border: 2px dashed #999;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
            border-radius: 8px;
            font-style: italic;
            color: #666;
        }
        
        strong {
            color: #6b5645;
        }