:root {
    --color-sage: #6B8E7F;
    --color-sage-dark: #4A6B5C;
    --color-sage-light: #A8C5B8;
    --color-cream: #FAF8F3;
    --color-sand: #E8E3D6;
    --color-clay: #B67C5E;
    --color-terracotta: #D4927A;
    --color-charcoal: #2C3333;
    --color-slate: #545B5F;
    --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--color-cream);
    color: var(--color-charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Decorative background elements */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--color-sage-light) 0%, transparent 70%);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-clay) 0%, transparent 70%);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

/* Header */
header {
    position: relative;
    box-shadow: var(--shadow-medium);
    animation: slideDown 0.8s ease-out;
    overflow: hidden;
}

.header-banner {
    position: relative;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 240px;
    display: flex;
    align-items: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(107, 142, 127, 0.92) 0%, 
        rgba(74, 107, 92, 0.88) 40%,
        rgba(168, 197, 184, 0.85) 70%,
        rgba(232, 227, 214, 0.75) 100%);
    mix-blend-mode: multiply;
}

/* Additional colorful gradient overlay */
.header-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(107, 142, 127, 0.6) 0%,
        rgba(182, 124, 94, 0.3) 50%,
        rgba(212, 146, 122, 0.4) 100%);
}

/* Decorative header elements */
.header-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(250, 248, 243, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 2;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    flex-shrink: 0;
}

.site-logo {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 0 40px rgba(250, 248, 243, 0.4));
    animation: fadeIn 1s ease-out 0.2s both;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 10px;
    backdrop-filter: blur(10px);
}

.title-container {
    flex: 1;
}

.site-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
    animation: fadeIn 1s ease-out 0.3s both;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3),
                 0 4px 16px rgba(0, 0, 0, 0.2);
}

.site-subtitle {
    font-size: clamp(1.125rem, 2.75vw, 1.5rem);
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: 0.35em;
    animation: fadeIn 1s ease-out 0.5s both;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.site-tagline {
    font-size: clamp(0.95rem, 2.2vw, 1.125rem);
    color: #FAF8F3;
    font-weight: 400;
    font-style: italic;
    animation: fadeIn 1s ease-out 0.7s both;
    opacity: 0.98;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
nav {
    background: white;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: fadeIn 1s ease-out 0.7s both;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-charcoal);
    padding: 0.75rem 1.25rem;
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-sage-light), transparent);
    transition: left 0.5s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    background: var(--color-sage);
    color: white;
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: var(--color-sage);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    margin: 1rem 0;
}

/* Hero Section */
.hero {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    animation: fadeIn 1s ease-out 0.9s both;
}

.hero-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    border-left: 6px solid var(--color-sage);
}

.hero h1 {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-sage-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.hero-intro {
    font-size: 1.125rem;
    color: var(--color-slate);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-intro strong {
    color: var(--color-sage-dark);
    font-weight: 600;
}

/* Support Message */
.support-message {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
}

/* Main Content */
.container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border-top: 4px solid var(--color-sage-light);
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.6s ease-out forwards;
}

.content-card:nth-child(1) { animation-delay: 0.2s; }
.content-card:nth-child(2) { animation-delay: 0.4s; }
.content-card:nth-child(3) { animation-delay: 0.6s; }
.content-card:nth-child(4) { animation-delay: 0.8s; }
.content-card:nth-child(5) { animation-delay: 1s; }
.content-card:nth-child(6) { animation-delay: 1.2s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-top-color: var(--color-sage);
}

.content-card h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    color: var(--color-sage-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-card p {
    color: var(--color-slate);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-card ul {
    list-style: none;
    padding: 0;
}

.content-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-slate);
}

.content-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: bold;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-sage);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link:hover {
    background: var(--color-sage-dark);
    transform: translateX(5px);
}

/* Key Principles Section */
.principles {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    margin: 3rem 0;
}

.principles h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    color: var(--color-sage-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.principle-item {
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: linear-gradient(to right, var(--color-sand) 0%, transparent 100%);
    border-left: 4px solid var(--color-sage);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.principle-item:hover {
    background: linear-gradient(to right, var(--color-sage-light) 0%, transparent 100%);
    transform: translateX(10px);
}

.principle-item h3 {
    color: var(--color-sage-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.principle-item p {
    color: var(--color-slate);
    line-height: 1.7;
}

/* Section Heading */
.section-heading {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    color: var(--color-sage-dark);
    text-align: center;
    margin: 3rem 0 2rem;
}

/* Advertisement Spaces */
.ad-banner-top {
    background: var(--color-sand);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(107, 142, 127, 0.1);
}

.ad-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.ad-placeholder {
    background: white;
    border: 2px dashed var(--color-sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.ad-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(107, 142, 127, 0.03) 100%);
}

.ad-placeholder span {
    position: relative;
    z-index: 1;
}

.ad-horizontal {
    width: 100%;
    max-width: 728px;
    height: 90px;
}

.ad-sidebar {
    width: 300px;
    height: 250px;
}

.ad-rectangle {
    width: 100%;
    max-width: 336px;
    height: 280px;
    margin: 0 auto;
}

/* Hero Layout with Sidebar */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.sidebar-ads {
    position: sticky;
    top: 80px;
}

.ad-content-block {
    text-align: center;
    padding: 2rem 0;
    margin: 2rem 0;
}

/* Sponsored Professionals Section */
.sponsored-section {
    background: linear-gradient(to bottom, white 0%, var(--color-sand) 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem 0;
    box-shadow: var(--shadow-soft);
}

.sponsored-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sponsored-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.sponsored-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-sage-light);
}

.sponsored-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(20%);
}

.sponsored-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.25rem;
    color: var(--color-sage-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.sponsored-card p {
    color: var(--color-slate);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 3em;
}

.sponsored-placeholder {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sponsored-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-slate);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(107, 142, 127, 0.2);
    font-style: italic;
}

.sponsored-disclaimer a {
    color: var(--color-sage-dark);
    text-decoration: underline;
}

.sponsored-disclaimer a:hover {
    color: var(--color-sage);
}

/* Disclaimer */
.disclaimer {
    background: linear-gradient(135deg, var(--color-clay) 0%, var(--color-terracotta) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: var(--shadow-soft);
}

.disclaimer h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.disclaimer p {
    line-height: 1.7;
    opacity: 0.95;
}

/* Footer */
footer {
    background: var(--color-charcoal);
    color: var(--color-sand);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--color-sand);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-sage-light);
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Internal Pages Styling */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--color-slate);
}

.breadcrumb a {
    color: var(--color-sage-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-sage);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--color-slate);
}

.page-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-sage-dark);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.2;
}

.page-intro {
    font-size: 1.125rem;
    color: var(--color-slate);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(to right, var(--color-sage-light) 0%, transparent 100%);
    border-left: 4px solid var(--color-sage);
    border-radius: 8px;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    margin-top: 2rem;
}

.primary-content {
    min-width: 0;
}

.sidebar-content {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.75rem;
    color: var(--color-sage-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-section h3 {
    font-size: 1.25rem;
    color: var(--color-sage-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.content-section p {
    color: var(--color-slate);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tip-box {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.tip-box h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.tip-box p {
    color: white;
    opacity: 0.95;
}

.warning-box {
    background: linear-gradient(135deg, var(--color-clay) 0%, var(--color-terracotta) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.warning-box h3 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.warning-box p {
    color: white;
    opacity: 0.95;
    line-height: 1.7;
}

.steps-list {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.step-content h3 {
    color: var(--color-sage-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-slate);
    line-height: 1.7;
    margin: 0;
}

.resource-links {
    display: grid;
    gap: 1rem;
}

.resource-card {
    display: block;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-sage);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.resource-card h3 {
    color: var(--color-sage-dark);
    margin-bottom: 0.5rem;
}

.resource-card p {
    color: var(--color-slate);
    margin: 0;
    font-size: 0.95rem;
}

.next-steps {
    background: var(--color-sand);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.next-steps h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    color: var(--color-sage-dark);
    margin-bottom: 1rem;
}

.next-steps p {
    color: var(--color-slate);
    margin-bottom: 1rem;
}

/* Sidebar Navigation */
.sidebar-nav {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}

.sidebar-nav h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.25rem;
    color: var(--color-sage-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-sage-light);
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: block;
    padding: 0.75rem;
    color: var(--color-slate);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--color-sage-light);
    color: white;
    transform: translateX(5px);
}

.quick-tip {
    background: linear-gradient(to bottom, var(--color-sand) 0%, var(--color-sage-light) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.quick-tip h3 {
    font-size: 1.125rem;
    color: var(--color-sage-dark);
    margin-bottom: 0.75rem;
}

.quick-tip p {
    color: var(--color-slate);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-ads {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1rem;
        position: static;
        margin-top: 2rem;
    }

    .ad-sidebar {
        width: 100%;
        max-width: 300px;
        justify-self: center;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-content {
        position: static;
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
    }

    .header-banner {
        min-height: 200px;
    }

    .header-container {
        padding: 2rem 1.5rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .site-logo {
        width: 110px;
        height: 110px;
    }

    .hero-content {
        padding: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .principles {
        padding: 2rem;
    }

    .sponsored-section {
        padding: 2rem;
    }

    .sponsored-grid {
        grid-template-columns: 1fr;
    }

    .ad-horizontal {
        height: 50px;
        max-width: 320px;
    }

    .sidebar-ads {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .header-container,
    .nav-container,
    .container {
        padding: 0 1rem;
    }

    .ad-container {
        padding: 0 1rem;
    }

    .header-banner {
        min-height: 180px;
    }

    .header-container {
        padding: 1.5rem 1rem;
    }

    .site-logo {
        width: 90px;
        height: 90px;
        padding: 8px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .principle-item {
        padding: 1rem;
    }

    .sponsored-section {
        padding: 1.5rem;
    }

    .sponsored-card {
        padding: 1.5rem;
    }

    .sidebar-content {
        grid-template-columns: 1fr;
    }

    .page-intro {
        padding: 1rem;
    }

    .tip-box,
    .warning-box {
        padding: 1.25rem;
    }

    .step-item {
        padding: 1.25rem;
    }
}
