        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Merriweather', serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        h2 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.8em;
        }
        h1 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.8em;
            color: green;
        }
        
        h3 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.8em;
            color: brown;
        }
        
        p {
            margin-bottom: 1.2em;
        }
        
        /* Centered layout with max-width */
        .main-wrapper {
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
            background-color: white;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
        }
        
        .container {
            padding: 0 20px;
        }
        
        /* Header container that fits image exactly */
        .header-container {
            width: 100%;
            display: flex;
            justify-content: center;
            background-color: #e67e22; /* Fallback color */
        }
        
        .header-image {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Orange theme colors */
        .main-nav, .menu-toggle {
            background-color: #e67e22;
            font-family: 'Merriweather', serif;
        }
        
        .main-nav a {
            color: white;
        }
        
        .main-nav a:hover {
            background-color: #d35400;
        }
        
        /* Main navigation */
        .main-nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            padding: 0;
            margin: 0;
        }
        
        .main-nav li {
            position: relative;
        }
        
        .main-nav a {
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            transition: background-color 0.3s;
        }
        
        /* Content area */
        .content {
            padding: 30px 0;
            flex: 1;
        }
        
        /* Footer */
        .site-footer {
            background-color: #333;
            color: white;
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
        }
        
        .footer-text {
            margin-bottom: 10px;
            font-style: italic;
        }
        
        .copyright {
            font-size: 13px;
        }
        
        /* Mobile styles */
        .menu-toggle {
            display: none;
            color: white;
            padding: 15px 20px;
            cursor: pointer;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            background-color: #e67e22;
            border: none;
            width: 100%;
            font-family: 'Merriweather', serif;
            letter-spacing: 1px;
            font-size: 14px;
        }
        
        /* Responsive menu */
        @media (max-width: 800px) {
            .main-wrapper {
                box-shadow: none;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .main-nav ul {
                display: none;
                flex-direction: column;
            }
            
            .main-nav.active ul {
                display: flex;
            }
            
            .main-nav a {
                padding: 12px 20px;
                text-align: center;
            }
            
            .footer-text {
                font-size: 13px;
            }
        }
        
        @media (max-width: 480px) {
            .main-nav a {
                padding: 10px 15px;
                font-size: 13px;
            }
            
            h1 {
                font-size: 24px;
            }
            
            h2 {
                font-size: 20px;
            }
            
            .footer-text {
                font-size: 12px;
            }
        }
        /* for saint today images */

    img.pleft {
    float: left;
    padding-right: 7px;
    border: none;
  }