       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Palatino';
            line-height: 1.6;
            color: #006747;
            background-color: #FFFFFF;
            background: url(https://usfcreativewriters.neocities.org/images/Nature_Bkgrd.jpg);
        }
        
                a {
            color: #006747;
            text-decoration: none;
            font-weight: bold;
        }

        a:hover {
            text-decoration: underline;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: linear-gradient(135deg, #006747 0%, rgba(0, 103, 71, 0.9) 100%);
            color: #FFFFFF;
            padding: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .header-text {
            flex: 1;
            max-width: 600px;
        }

        .header-text h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .header-text p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            background-color: #CFC493;
            color: #006747;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(207, 196, 147, 0.3);
        }

        .header-image {
            flex: 0 0 300px;
        }

        .header-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        nav {
            background-color: #CFC493;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu li a {
            text-decoration: none;
            color: #006747;
            font-weight: bold;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
        }

        .nav-menu li a::before {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        }

        .nav-menu li a:hover {
            background-color: #006747;
            color: #FFFFFF;
            box-shadow: 0 4px 15px rgba(0, 103, 71, 0.3);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #006747;
            font-size: 1.5rem;
            cursor: pointer;
        }

        main {
            padding: 3rem 0;
            background: linear-gradient(to bottom, #FFFFFF 0%, rgba(207, 196, 147, 0.05) 100%);
        }

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

        .column {
            background-color: #FFFFFF;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0, 103, 71, 0.1);
            border-top: 4px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #006747, #CFC493, #006747);
        }

        .column h2 {
            color: #006747;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .column h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #CFC493, #006747);
        }

        .column p {
            margin-bottom: 1rem;
            text-align: justify;
            color: #333;
            line-height: 1.7;
        }

        .section-title {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 2.5rem;
            color: #006747;
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        footer {
            background: linear-gradient(135deg, #006747 0%, rgba(0, 103, 71, 0.9) 100%);
            color: #FFFFFF;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: #CFC493;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 8px;
            border-radius: 50%;
            background: rgba(207, 196, 147, 0.1);
        }

        .social-links a:hover {
            background: rgba(207, 196, 147, 0.2);
            color: #FFFFFF;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .header-text h1 {
                font-size: 2.2rem;
            }

            .header-image {
                flex: none;
                max-width: 280px;
            }

            .nav-menu {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #CFC493;
                padding: 1rem;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                z-index: -1;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                z-index: 1;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .content-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .column {
                padding: 1.5rem;
            }

            .header-text h1 {
                font-size: 1.8rem;
            }

            .header-text p {
                font-size: 1rem;
            }
        }