/* Start custom CSS */* { box-sizing: border-box; }

    /* BODY BACKGROUND AS LOGO PHOTO-BOMB */
    body, .elementor, .elementor-location-single, .elementor-section {
        background-image: url("https://vinylpressusa.com/wp-content/uploads/2023/07/VP-LOGO-PNG_50.png");
        background-repeat: repeat;
        background-size: 320px; /* adjust smaller/larger if needed */
        background-position: center;
        background-attachment: fixed;
    }

    /* White overlay panels for readability */
    .vp-page,
    .vp-hero,
    .vp-card,
    .vp-spec-box {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(2px);
    }

    body {
        margin: 0;
        font-family: "Helvetica Neue", Arial, sans-serif;
        color: #222;
    }

    a { text-decoration: none; }

    /* TOP HEADER BAR (LOGO AREA) */
    .vp-topbar {
        background: #0d0d0d;
        padding: 12px 20px;
        display: flex;
        align-items: center;
    }

    .vp-topbar img {
        max-width: 70px; /* do NOT exceed your red-circle limit */
        height: auto;
        display: block;
    }

    .vp-page {
        max-width: 1120px;
        margin: 40px auto 60px auto;
        padding: 0 20px;
    }

    /* HERO SECTION */
    .vp-hero {
        border-radius: 10px;
        padding: 40px 32px;
        box-shadow: 0 0 18px rgba(0,0,0,0.08);
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
    }

    .vp-hero-text { flex: 1 1 260px; }
    .vp-hero-text h1 { margin: 0 0 10px; font-size: 32px; }
    .vp-hero-text p { font-size: 16px; line-height: 1.6; margin-bottom: 20px; }

    .vp-hero-tags {
        margin-bottom: 15px;
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #666;
    }

    .vp-btn-primary {
        display: inline-block;
        padding: 12px 22px;
        background: #0a6cff;
        color: #fff;
        border-radius: 4px;
        font-weight: 600;
        margin-right: 10px;
        font-size: 14px;
    }

    .vp-btn-outline {
        display: inline-block;
        padding: 11px 20px;
        border-radius: 4px;
        border: 1px solid #0a6cff;
        color: #0a6cff;
        font-weight: 600;
        font-size: 14px;
    }

    .vp-section { margin-top: 40px; }

    .vp-section h2 {
        color: #0a6cff;
        font-size: 22px;
        margin-bottom: 14px;
    }

    .vp-card {
        border-radius: 10px;
        padding: 26px 24px;
        box-shadow: 0 0 14px rgba(0,0,0,0.06);
        margin-bottom: 10px;
    }

    .vp-buckets {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }

    .vp-bucket-title {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: bold;
        color: #666;
        margin-bottom: 8px;
    }

    h3 { margin-bottom: 10px; font-size: 18px; }

    .vp-card ul {
        margin: 0 0 10px 18px;
        padding: 0;
        font-size: 14px;
    }

    .vp-pitch {
        font-size: 13px;
        color: #555;
        margin-top: 6px;
    }

    .vp-spec-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 24px;
    }

    .vp-spec-box {
        padding: 18px;
        border-radius: 8px;
        border: 1px solid #ddd;
    }

    @media (max-width: 800px) {
        .vp-spec-grid {
            grid-template-columns: 1fr;
        }
        .vp-hero {
            padding: 28px 20px;
        }
    }/* End custom CSS */