        :root {
            --beige: #f5efe6;
            --terracotta: #b66c53;
            --dark-brown: #1e0d01;
            --sage: #8D8B63;
            --white: #FFFFFF;
            --light-gray: #f9f9f9;
            --dark-sage: #6d6b4d;
            --cream: #faf8f5;
            --gold: #b66c53;
            --black: #111111;
        }

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

        body {
            font-family: 'Red Hat Display', sans-serif;
            background-color: var(--cream);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Main content wrapper */
        .main-content {
            flex: 1;
            padding-bottom: 100px; /* Space for footer */
        }

        /* Footer at Bottom Styles */
        .main-footer {
            background-color: var(--black);
            color: var(--white);
            width: 100%;
            padding: 60px 0 0;
            margin-top: auto;
        }

        .footer-wave {
            position: absolute;
            top: -1px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .footer-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 50px;
        }

        .footer-wave .shape-fill {
            fill: var(--cream);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding-bottom: 60px;
        }

        .footer-column h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--gold);
            position: relative;
            padding-bottom: 15px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold));
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo-img {
            height: 50px;
            margin-right: 15px;
        }

        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--white);
            font-size: 1.8rem;
            letter-spacing: 1px;
        }

        .footer-logo-subtext {
            display: block;
            font-family: 'Red Hat Display', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--sage);
            margin-top: 3px;
        }

        .footer-about p {
            margin-bottom: 20px;
            line-height: 1.8;
            opacity: 0.8;
        }

        .footer-contact-list {
            list-style: none;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .footer-contact-icon {
            color: var(--gold);
            margin-right: 15px;
            font-size: 1.1rem;
            margin-top: 3px;
        }

        .footer-contact-text {
            opacity: 0.8;
            line-height: 1.6;
        }

        .footer-contact-text a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-contact-text a:hover {
            color: var(--gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-link-item {
            margin-bottom: 12px;
        }

        .footer-link {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
        }

        .footer-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background-color: var(--gold);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            opacity: 1;
            color: var(--gold);
            padding-left: 20px;
        }

        .footer-link:hover::before {
            opacity: 1;
        }

        .footer-newsletter p {
            opacity: 0.8;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 0.9rem;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-btn {
            background: var(--gold);
            color: var(--black);
            border: none;
            padding: 0 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            background: var(--terracotta);
            color: var(--white);
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--gold);
            color: var(--black);
            transform: translateY(-3px);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px 0;
            text-align: center;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .copyright {
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .footer-legal {
            display: flex;
            gap: 20px;
        }

        .legal-link {
            color: var(--white);
            text-decoration: none;
            opacity: 0.7;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .legal-link:hover {
            opacity: 1;
            color: var(--gold);
        }

        /* Sample Content Styles */
        .page-content {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        .page-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--dark-brown);
            margin-bottom: 30px;
        }
        
        .page-text {
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Responsive Styles */
        @media (max-width: 991.98px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767.98px) {
            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom-content {
                flex-direction: column;
            }

            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 575.98px) {
            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input {
                border-radius: 0;
            }

            .newsletter-btn {
                padding: 12px;
                border-radius: 0;
            }
        }