:root {
            --fp-gold: #b68a2a;
            --fp-maroon: #6f1f1f;
            --fp-text: #3b3b3b;
        }

        .fp-section {
            background: #fff;
            padding: 56px 0;
        }

        /* works with Bootstrap or without */
        .fp-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 16px;
            text-align: center;
        }

        .fp-title {
            margin: 0 0 14px;
            font-weight: 800;
            letter-spacing: .5px;
            text-transform: uppercase;
            font-size: clamp(26px, 2.6vw, 42px);
            line-height: 1.1;
        }

        .fp-title-gold {
            color: var(--fp-gold);
        }

        .fp-title-maroon {
            color: var(--fp-maroon);
        }

        .fp-subtitle {
            margin: 0 auto 28px;
            color: var(--fp-maroon);
            font-weight: 700;
            font-size: clamp(13px, 1.2vw, 16px);
            line-height: 1.5;
            max-width: 980px;
            text-transform: uppercase;
        }

        .fp-image-wrap {
            display: flex;
            justify-content: center;
            margin: 0 auto 26px;
        }

        .fp-image {
            width: min(620px, 92vw);
            height: auto;
            display: block;
            border-radius: 6px;
            /* optional: subtle polish */
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
            background: #fff;
        }

        .fp-footer {
            margin: 0;
            color: var(--fp-maroon);
            font-weight: 700;
            font-size: clamp(14px, 1.15vw, 18px);
            line-height: 1.55;
        }

        /* Optional: if you want more breathing space on very large screens */
        @media (min-width: 1200px) {
            .fp-section {
                padding: 70px 0;
            }

            .fp-image {
                width: 680px;
            }
        }
