        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.8;
            color: #333;
            background: #f9f7f4;
        }

        .header {
            background: linear-gradient(135deg, rgba(139, 125, 107, 0.9), rgba(101, 84, 67, 0.9)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23d4c5b9" width="1200" height="400"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
            color: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: relative;
        }

        .nav-link {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 25px;
            border-radius: 10px;
            text-decoration: none;
            color: #6b5d52;
            font-size: 1.1em;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

       .header2 {
            background: linear-gradient(135deg, rgba(139, 125, 107, 0.9), rgba(101, 84, 67, 0.9)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23d4c5b9" width="1200" height="400"/></svg>');
            background-size: cover;
            background-position: left;
            padding: 80px 20px;
            text-align: left;
            color: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: relative;
        }

        .nav-link2 {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            align-items: left;
            gap: 12px;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px 25px;
            border-radius: 10px;
            text-decoration: none;
            color: #6b5d52;
            font-size: 1.1em;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }


        .nav-link:hover {
            background: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .nav-link .icon {
            font-size: 1.5em;
        }

        .header h1 {
            font-size: 3.5em;
            margin-bottom: 15px;
            font-weight: 300;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header .subtitle {
            font-size: 1.3em;
            font-style: italic;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 30px;
        }

        .intro {
            text-align: center;
            font-size: 1.3em;
            font-style: italic;
            color: #8b7d6b;
            margin-bottom: 60px;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }

        .section {
            margin-bottom: 50px;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }

        .section h2 {
            font-size: 2.2em;
            color: #8b7d6b;
            margin-bottom: 5px;
            border-bottom: 3px solid #d4c5b9;
            padding-bottom: 5px;
            font-weight: 400;
        }

        .section p {
            margin-bottom: 20px;
            font-size: 1.1em;
            text-align: justify;
        }

        .emphasis {
            text-align: center;
            font-size: 1.4em;
            font-weight: bold;
            color: #8b7d6b;
            margin: 30px 0;
            line-height: 1.6;
        }

        .highlight {
            background: #f5f0eb;
            padding: 30px;
            border-left: 5px solid #8b7d6b;
            margin: 30px 0;
            font-style: italic;
            border-radius: 5px;
        }

        .quote {
            text-align: center;
            font-size: 1.2em;
            font-style: italic;
            color: #6b5d52;
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(135deg, #f5f0eb 0%, #ebe4dc 100%);
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .quote:before {
            content: "\"\"\"";
            font-size: 3em;
            color: #d4c5b9;
            display: block;
            line-height: 0.5;
        }

        .quote:after {
            content: "\"\"\"";
            font-size: 3em;
            color: #d4c5b9;
            display: block;
            line-height: 0.5;
            text-align: right;
        }

        .image-container {
            text-align: center;
            margin: 40px 0;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }

        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .image-container .caption {
            margin-top: 15px;
            font-style: italic;
            color: #6b5d52;
            font-size: 0.95em;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .image-grid-item {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .image-grid-item img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        .image-grid-item .caption {
            font-style: italic;
            color: #6b5d52;
            font-size: 0.9em;
            text-align: center;
        }

        .blessings-list {
            background: #f5f0eb;
            padding: 30px 40px;
            border-radius: 10px;
            margin: 30px 0;
        }

        .blessings-list p {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }

        .blessings-list p:before {
            content: "✦";
            position: absolute;
            left: 0;
            color: #8b7d6b;
            font-size: 1.2em;
        }

        .scripture {
            text-align: center;
            font-size: 1.3em;
            color: #6b5d52;
            padding: 40px;
            margin: 50px 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            font-style: italic;
        }

        .scripture-ref {
            display: block;
            margin-top: 15px;
            font-size: 0.9em;
            color: #8b7d6b;
        }

        .divider {
            text-align: center;
            margin: 50px 0;
            color: #d4c5b9;
            font-size: 2em;
        }

        .footer {
            background: #6b5d52;
            color: white;
            text-align: center;
            padding: 40px 20px;
            font-size: 1.1em;
        }

        .footer p {
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2em;
            }
            
            .header .subtitle {
                font-size: 1.1em;
            }
            
            .nav-link {
                position: static;
                margin: 0 auto 20px;
                display: inline-flex;
            }
            
            .section {
                padding: 25px;
            }
            
            .section h2 {
                font-size: 1.7em;
            }
            
            .container {
                padding: 40px 20px;
            }

            .image-grid {
                grid-template-columns: 1fr;
            }
        }
		
		.picture-frame {
  /* Defines the outer boundary of the frame */
  border: 15px solid #333; /* Color and thickness of the border/frame */
  padding: 10px; /* Space between the border and the image */
  background-color: #f0f0f0; /* Color inside the padding area */
  display: inline-block; /* Ensures the div only wraps the content */
  box-shadow: 5px 5px 10px rgba(0,0,0,0.5); /* Optional shadow effect */
}

.picture-frame img {
  /* Ensures the image fits nicely inside the frame div */
  display: block;
  max-width: 100%;
  height: auto;
}

/* Language switch buttons (top-left) */
.lang-switch {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 2;
}

.lang-switch a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    color: #6b5d52;
    font-size: 1.05em;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.lang-switch a:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.lang-switch .icon {
    font-size: 1.2em;
}

/* Hide the button for the current language */
html[data-lang="en"] .lang-en { display: none; }
html[data-lang="zh"] .lang-zh { display: none; }

/* Mobile: stack nicely */
@media (max-width: 768px) {
    .lang-switch {
        position: static;
        justify-content: center;
        margin: 0 auto 15px;
        flex-wrap: wrap;
    }
}