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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f6f8f9;
}

/* Hero Banner Container */
.heroBanner {
    position: relative;
    background-color: rgb(246, 248, 249);
    padding: 80px 0;
    overflow: hidden;
    transform: translate(0px, 0px);
    opacity: 1;
}

.heroBanner--small {
    padding: 60px 0;
}

/* Animated Shapes Background */
.shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shapes__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.shapes__group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

/* SVG Shape Styling */
.shape {
    position: absolute;
    opacity: 0.12;
    fill: currentColor;
    will-change: transform;
}

/* Shape Option 1 - Organic Blobs */
.shapes-option--1 .shape--1 {
    top: -10%;
    left: -5%;
    width: 50%;
    height: auto;
    color: #7c3aed;
}

.shapes-option--1 .shape--2 {
    bottom: -15%;
    right: -8%;
    width: 45%;
    height: auto;
    color: #2563eb;
}

/* Color Option 10 - Purple/Blue Theme */
.shapes-colour-option--10 .shape--1 {
    color: #8b5cf6;
}

.shapes-colour-option--10 .shape--2 {
    color: #3b82f6;
}

/* Container */
.heroBanner_container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.heroBanner--small__container {
    max-width: 1000px;
    margin: 0 auto;
}

.column-layout__hero--small {
    position: relative;
}

/* Breadcrumb Navigation */
.breadcrumb-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: #888;
    list-style: none;
    padding: 0;
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
}

.breadcrumb-nav li:not(:first-child)::before {
    content: "›";
    color: #bbb;
    font-size: 14px;
    margin: 0 8px;
}

.breadcrumb-nav a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-nav li:first-child a::before {
    content: "⌂";
    font-size: 14px;
    margin-right: 4px;
}

.breadcrumb-nav a:hover {
    color: #555;
}

.breadcrumb-nav .current {
    color: #555;
    font-weight: 500;
}

/* Main Heading */
h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    opacity: 1;
    overflow: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .heroBanner {
        padding: 50px 0;
    }

    .heroBanner--small {
        padding: 40px 0;
    }

    h1 {
        font-size: 36px;
    }

    .shapes-option--1 .shape--1,
    .shapes-option--1 .shape--2 {
        width: 70%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
}

/* Animation Keyframes */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(30px, -25px) rotate(5deg) scale(1.05);
    }

    50% {
        transform: translate(-20px, -50px) rotate(-3deg) scale(1.08);
    }

    75% {
        transform: translate(-35px, -25px) rotate(-6deg) scale(1.03);
    }
}

.shape--1 {
    animation: float 15s ease-in-out infinite;
}

.shape--2 {
    animation: float 18s ease-in-out infinite reverse;
}