Hello, World!
/* --- GLOBAL COLOURS (Black & Gold) --- */ :root { --gold: #D4AF37; --black: #0A0A0A; --light-grey: #F2F2F2; } /* Buttons */ a.sqs-block-button-element { background-color: var(--gold) !important; color: var(--black) !important; border-radius: 6px !important; padding: 14px 26px !important; font-weight: 600 !important; transition: 0.3s ease; } /* Hover effect */ a.sqs-block-button-element:hover { background-color: var(--black) !important; color: var(--gold) !important; border: 1px solid var(--gold) !important; } /* Hero Section Styling */ .hero-section { background: var(--black) !important; color: white !important; padding: 120px 20px !important; text-align: center; } .hero-section h1 { color: var(--gold) !important; font-size: 3rem !important; font-weight: 700; } .hero-section p { color: #fff !important; font-size: 1.25rem; } /* Intro Stats Bar */ .stats-bar { background: var(--black) !important; color: var(--gold) !important; text-align: center; padding: 40px 0; } .stat-item { font-size: 1.3rem; font-weight: 600; } /* Services Cards */ .service-card { background: var(--light-grey); border-left: 4px solid var(--gold); padding: 30px; border-radius: 8px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
Hello, World!