/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary-color: #5e548e;
    --primary-light: #eeecf4;
    --primary-dark: #433b64;
    --secondary-color: #9b59b6;
    --secondary-light: #f3e5f5;
    --tertiary-color: #e67e22;
    --tertiary-light: #fdf2e9;
    --accent-color: #2ecc71;
    --accent-light: #e8f5e8;
    --neutral-color: #bdc3c7;
    --neutral-light: #f8f9fa;
    --info-color: #3498db;
    --warning-color: #e74c3c;
    --success-color: #27ae60;
    --text-color: #433b64;
    --text-light: #7f8c8d;
    --bg-color: #ffffff;
    --shadow-light: 0 3px 12px rgba(94, 84, 142, 0.08);
    --shadow-medium: 0 7px 28px rgba(94, 84, 142, 0.12);
    --shadow-heavy: 0 15px 35px rgba(94, 84, 142, 0.18);
    --border-radius: 13px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 21px
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 13px
}

h1 {
    font-size: 2.8rem;
    color: var(--primary-dark)
}

h2 {
    font-size: 2.2rem;
    color: var(--primary-dark)
}

h3 {
    font-size: 1.6rem;
    color: var(--primary-color)
}

h4 {
    font-size: 1.3rem;
    color: var(--primary-color)
}

p {
    margin-bottom: 21px;
    color: var(--text-color);
    font-size: 1.05rem
}

/* Header & Navigation */
.main_menu {
    background: var(--bg-color);
    box-shadow: var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition)
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative
}

.navbar-brand img {
    height: 42px;
    width: auto
}

.nav-toggle {
    display: none
}

.nav-toggle-label {
    display: none
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: var(--transition)
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition)
}

.hamburger:before {
    top: -8px
}

.hamburger:after {
    top: 8px
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 34px;
    align-items: center
}

.nav-item {
    list-style: none
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px)
}

/* Hero Section */
.heroArea {
    padding: 120px 0 90px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center
}

.heroContent {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 55px;
    align-items: center
}

.heroText h1 {
    margin-bottom: 26px;
    font-size: 3.2rem
}

.heroText p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 34px;
    line-height: 1.8
}

.heroButtons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap
}

.primaryBtn, .secondaryBtn {
    padding: 15px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden
}

.primaryBtn {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-medium)
}

.primaryBtn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: var(--primary-dark)
}

.secondaryBtn {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color)
}

.secondaryBtn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px)
}

.heroVisual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium)
}

/* Services Section */
.servicesArea {
    padding: 90px 0;
    background: var(--neutral-light)
}

.sectionHeader {
    text-align: center;
    margin-bottom: 70px
}

.sectionHeader h2 {
    margin-bottom: 18px
}

.sectionHeader p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 34px
}

.serviceCard {
    background: var(--bg-color);
    padding: 42px 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent
}

.serviceCard:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-light)
}

.serviceIcon {
    margin-bottom: 26px;
    display: flex;
    justify-content: center
}

.iconShape {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.serviceCard h3 {
    margin-bottom: 18px;
    color: var(--primary-dark)
}

.serviceCard p {
    color: var(--text-light);
    line-height: 1.7
}

/* About Section */
.aboutSection {
    padding: 90px 0;
    background: var(--bg-color)
}

.aboutContent {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 55px;
    align-items: center
}

.aboutText h2 {
    margin-bottom: 26px
}

.aboutText p {
    margin-bottom: 21px;
    color: var(--text-light)
}

.statsRow {
    display: flex;
    gap: 34px;
    margin-top: 42px
}

.statItem {
    text-align: center
}

.statNumber {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1
}

.statLabel {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px
}

.aboutImage img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium)
}

/* CTA Section */
.ctaSection {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center
}

.ctaContent h2 {
    color: white;
    margin-bottom: 21px;
    font-size: 2.5rem
}

.ctaContent p {
    font-size: 1.2rem;
    margin-bottom: 34px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.ctaButton {
    background: white;
    color: var(--primary-color);
    padding: 18px 42px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    box-shadow: var(--shadow-medium)
}

.ctaButton:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy)
}

/* Process Section */
.processArea {
    padding: 90px 0;
    background: var(--neutral-light)
}

.processSteps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 42px
}

.processStep {
    background: var(--bg-color);
    padding: 42px 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent
}

.processStep:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-light)
}

.stepNumber {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 21px;
    opacity: 0.7
}

.processStep h3 {
    margin-bottom: 18px;
    color: var(--primary-dark)
}

.processStep p {
    color: var(--text-light);
    margin-bottom: 26px
}

.processStep img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light)
}

/* Contact Section */
.contactSection {
    padding: 90px 0;
    background: var(--bg-color)
}

.contactContent {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: start
}

.contactInfo h2 {
    margin-bottom: 21px
}

.contactInfo p {
    color: var(--text-light);
    margin-bottom: 34px
}

.contactDetails {
    display: flex;
    flex-direction: column;
    gap: 21px
}

.contactItem {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.contactItem strong {
    color: var(--primary-color);
    font-weight: 600
}

/* Contact Form */
.contactForm {
    background: var(--neutral-light);
    padding: 42px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--neutral-color)
}

.formGroup {
    margin-bottom: 26px
}

.formGroup label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 500
}

.formGroup input,
.formGroup select,
.formGroup textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid var(--neutral-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-color)
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(94, 84, 142, 0.1)
}

.submitBtn {
    background: var(--primary-color);
    color: white;
    padding: 15px 34px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    box-shadow: var(--shadow-medium)
}

.submitBtn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy)
}

/* Footer */
.footerArea {
    background: var(--primary-dark);
    color: white;
    padding: 70px 0 21px
}

.footerContent {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 42px;
    margin-bottom: 42px
}

.footerSection h4 {
    color: white;
    margin-bottom: 21px;
    font-size: 1.2rem
}

.footerSection p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7
}

.footerLogo img {
    height: 38px;
    margin-bottom: 18px
}

.footerLinks {
    list-style: none
}

.footerLinks li {
    margin-bottom: 13px
}

.footerLinks a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition)
}

.footerLinks a:hover {
    color: white;
    transform: translateX(3px)
}

.footerContact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 13px
}

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 26px;
    text-align: center
}

.footerBottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        transition: var(--transition);
        padding-top: 80px;
        z-index: 1
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0
    }

    .nav-link {
        display: inline-block;
        padding: 15px 20px;
        font-size: 1.2rem;
        color: var(--text-color)
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0
    }
}

/* Responsive Design */
@media screen and (max-width: 1280px) {
    .container {
        padding: 0 34px
    }
}

@media screen and (max-width: 890px) {
    .heroContent {
        grid-template-columns: 1fr;
        gap: 42px;
        text-align: center
    }

    .heroText h1 {
        font-size: 2.5rem
    }

    .aboutContent {
        grid-template-columns: 1fr;
        gap: 42px
    }

    .contactContent {
        grid-template-columns: 1fr;
        gap: 42px
    }

    .statsRow {
        justify-content: center;
        gap: 21px
    }

    .footerContent {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center
    }

    .processSteps {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .servicesGrid {
        grid-template-columns: 1fr;
        gap: 28px
    }
}

@media screen and (max-width: 640px) {
    .container {
        padding: 0 21px
    }

    .heroArea {
        padding: 100px 0 70px
    }

    .heroText h1 {
        font-size: 2.2rem
    }

    .heroButtons {
        flex-direction: column;
        align-items: center
    }

    .primaryBtn, .secondaryBtn {
        width: 100%;
        text-align: center
    }

    .servicesArea, .aboutSection, .processArea, .contactSection {
        padding: 70px 0
    }

    .ctaSection {
        padding: 50px 0
    }

    .ctaContent h2 {
        font-size: 2rem
    }

    .statsRow {
        flex-direction: column;
        gap: 21px
    }

    .contactForm {
        padding: 28px
    }
}

/* About Page Styles */
.aboutHeroArea {
    padding: 120px 0 70px;
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--bg-color) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center
}

.aboutHeroContent {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 55px;
    align-items: center
}

.aboutHeroText h1 {
    font-size: 3rem;
    margin-bottom: 26px;
    color: var(--primary-dark)
}

.aboutHeroText p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8
}

.aboutHeroImage img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium)
}

/* Mission Area */
.missionArea {
    padding: 90px 0;
    background: var(--bg-color)
}

.missionContent {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 55px;
    align-items: start
}

.missionText h2 {
    margin-bottom: 26px;
    color: var(--primary-dark)
}

.missionText p {
    margin-bottom: 21px;
    color: var(--text-light);
    line-height: 1.7
}

.missionValues {
    display: flex;
    flex-direction: column;
    gap: 21px
}

.valueCard {
    background: var(--neutral-light);
    padding: 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 2px solid var(--neutral-color);
    transition: var(--transition)
}

.valueCard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color)
}

.valueCard h3 {
    color: var(--primary-color);
    margin-bottom: 13px;
    font-size: 1.3rem
}

.valueCard p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem
}

/* Team/Approach Area */
.teamArea {
    padding: 90px 0;
    background: var(--neutral-light)
}

.approachGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 42px
}

.approachCard {
    background: var(--bg-color);
    padding: 34px 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent
}

.approachCard:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-light)
}

.approachCard img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 21px;
    box-shadow: var(--shadow-light)
}

.approachCard h3 {
    margin-bottom: 18px;
    color: var(--primary-dark)
}

.approachCard p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0
}

/* Story Area */
.storyArea {
    padding: 90px 0;
    background: var(--bg-color)
}

.storyContent {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 55px;
    align-items: center
}

.storyText h2 {
    margin-bottom: 26px;
    color: var(--primary-dark)
}

.storyText p {
    margin-bottom: 21px;
    color: var(--text-light);
    line-height: 1.7
}

.storyImage img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium)
}

/* About CTA Section */
.aboutCtaSection {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    color: white;
    text-align: center
}

.aboutCtaContent h2 {
    color: white;
    margin-bottom: 21px;
    font-size: 2.3rem
}

.aboutCtaContent p {
    font-size: 1.15rem;
    margin-bottom: 34px;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto
}

/* Thank You Page Styles */
.thankYouArea {
    padding: 120px 0 90px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-color) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center
}

.thankYouContent {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 55px;
    align-items: center
}

.thankYouText {
    text-align: center
}

.successIcon {
    margin-bottom: 34px;
    display: flex;
    justify-content: center
}

.checkmark {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    position: relative;
    box-shadow: var(--shadow-medium)
}

.checkmark:after {
    content: '';
    position: absolute;
    left: 28px;
    top: 18px;
    width: 15px;
    height: 25px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg)
}

.thankYouText h1 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    color: var(--primary-dark)
}

.thankYouSubtitle {
    font-size: 1.3rem;
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 26px
}

.thankYouText p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 21px;
    font-size: 1.05rem
}

.thankYouImage img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium)
}

/* Next Steps Area */
.nextStepsArea {
    padding: 90px 0;
    background: var(--neutral-light)
}

.stepsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px
}

.stepCard {
    background: var(--bg-color);
    padding: 42px 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent
}

.stepCard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-light)
}

.stepIcon {
    margin-bottom: 26px;
    display: flex;
    justify-content: center
}

.stepCounter {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700
}

.stepCard h3 {
    margin-bottom: 18px;
    color: var(--primary-dark)
}

.stepCard p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0
}

/* Additional Info Area */
.additionalInfoArea {
    padding: 90px 0;
    background: var(--bg-color)
}

.infoContent {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 55px;
    align-items: start
}

.infoText h2 {
    margin-bottom: 26px;
    color: var(--primary-dark)
}

.infoText p {
    margin-bottom: 26px;
    color: var(--text-light);
    line-height: 1.7
}

.preparationList {
    list-style: none;
    padding: 0
}

.preparationList li {
    background: var(--neutral-light);
    padding: 18px 21px;
    margin-bottom: 13px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    color: var(--text-color);
    transition: var(--transition)
}

.preparationList li:hover {
    transform: translateX(5px);
    background: var(--accent-light)
}

.infoImage img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium)
}

/* Contact Reminder Area */
.contactReminderArea {
    padding: 70px 0;
    background: var(--primary-light);
    text-align: center
}

.reminderContent h2 {
    margin-bottom: 21px;
    color: var(--primary-dark)
}

.reminderContent p {
    margin-bottom: 34px;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.contactOptions {
    display: flex;
    gap: 42px;
    justify-content: center;
    margin-bottom: 42px;
    flex-wrap: wrap
}

.contactOption {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center
}

.contactOption strong {
    color: var(--primary-color);
    font-weight: 600
}

.contactOption span {
    color: var(--text-color)
}

.backButtons {
    display: flex;
    gap: 21px;
    justify-content: center;
    flex-wrap: wrap
}

/* Responsive adjustments for About and Thank You pages */
@media screen and (max-width: 890px) {
    .aboutHeroContent,
    .missionContent,
    .storyContent,
    .thankYouContent,
    .infoContent {
        grid-template-columns: 1fr;
        gap: 42px
    }

    .aboutHeroText,
    .thankYouText {
        text-align: center
    }

    .missionValues {
        margin-top: 34px
    }

    .contactOptions {
        flex-direction: column;
        gap: 21px
    }

    .backButtons {
        flex-direction: column;
        align-items: center
    }

    .stepsGrid,
    .approachGrid {
        grid-template-columns: 1fr;
        gap: 28px
    }
}

@media screen and (max-width: 640px) {
    .aboutHeroText h1,
    .thankYouText h1 {
        font-size: 2.2rem
    }

    .aboutHeroArea,
    .thankYouArea {
        padding: 100px 0 70px
    }

    .missionArea,
    .teamArea,
    .storyArea,
    .nextStepsArea,
    .additionalInfoArea {
        padding: 70px 0
    }

    .aboutCtaSection,
    .contactReminderArea {
        padding: 50px 0
    }

    .checkmark {
        width: 60px;
        height: 60px
    }

    .checkmark:after {
        left: 21px;
        top: 13px;
        width: 12px;
        height: 20px
    }

    .stepCounter {
        width: 50px;
        height: 50px;
        font-size: 1.3rem
    }
}

.aarghg {margin:5% 15%}