/*
---
TABLE OF CONTENTS
---
1.  GLOBAL STYLES & VARIABLES
2.  HELPER & UTILITY CLASSES
3.  HEADER & NAVIGATION
4.  MOBILE NAVIGATION
5.  FOOTER
6.  BUTTONS & FORMS
7.  HERO SECTION
8.  GENERAL PAGE & SECTION STYLES
9.  ABOUT SECTION
10. SERVICES SECTION
11. CALCULATOR SECTION
12. TESTIMONIALS SECTION
13. CTA SECTION
14. SUBPAGE STYLES (LEGAL, CONTACT)
15. CONTACT PAGE SPECIFIC
16. POPUP/MODAL
17. ANIMATIONS & KEYFRAMES
18. RESPONSIVE DESIGN (MEDIA QUERIES)
---
*/

/* 1. GLOBAL STYLES & VARIABLES */
:root {
    --font-primary: 'Poppins', sans-serif;

    --color-bg: #0A0C1E;
    --color-bg-light: #161a38;
    --color-bg-lighter: #20244f;
    --color-primary: #00F2FF;
    /* Cyan */
    --color-secondary: #FF00E0;
    /* Magenta */
    --color-white: #FFFFFF;
    --color-text: #c0c8e7;
    --color-heading: #FFFFFF;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-shadow: rgba(0, 242, 255, 0.1);

    --header-height: 80px;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* 2. HELPER & UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-white);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

/* 3. HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(10, 12, 30, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    border-bottom: 1px solid var(--color-border);
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 60px;
    width: auto;
    filter: invert(1);
    transition: transform var(--transition-speed) ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin: 5px 0;
    transition: all var(--transition-speed) ease-in-out;
    border-radius: 3px;
}

/* 4. MOBILE NAVIGATION */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-bg-light);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: right var(--transition-speed) ease-in-out;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
}

.mobile-nav nav li a {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: block;
}

.mobile-nav .btn-primary {
    margin-top: 2rem;
}

/* Mobile toggle animation when open */
.mobile-toggle.open .bar-top {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.open .bar-middle {
    opacity: 0;
}

.mobile-toggle.open .bar-bottom {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* 5. FOOTER */
.footer {
    background-color: var(--color-bg-light);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.footer-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    top: -100px;
    left: -100px;
}

.footer-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--color-secondary);
    bottom: -50px;
    right: -50px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-col-title {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col-title::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-logo {
    height: 60px;
    filter: invert(1);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-white);
}

.social-link:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a:hover {
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-info li i {
    color: var(--color-primary);
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

/* 6. BUTTONS & FORMS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn i {
    position: relative;
    z-index: 2;
}


.btn-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: var(--color-bg);
    border: none;
    box-shadow: 0 5px 15px var(--color-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--color-shadow);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
}

.btn.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn.full-width {
    width: 100%;
}


/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-heading);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-shadow);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    width: 100%;
}

textarea {
    resize: vertical;
}

/* 7. HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-bg) 30%, rgba(10, 12, 30, 0.7) 60%, rgba(10, 12, 30, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 650px;
}

.hero-tagline {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.hero-scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-down a {
    color: var(--color-white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* 8. GENERAL PAGE & SECTION STYLES */
main {
    padding-top: var(--header-height);
}

body.subpage main {
    padding-top: 0;
}

section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    color: var(--color-white);
}

.section-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 9. ABOUT SECTION */
.about-section {
    background-color: var(--color-bg-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image-container img {
    border-radius: var(--border-radius);
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--color-primary);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.5;
}

.about-experience-box {
    position: absolute;
    bottom: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--color-bg);
}

.about-experience-box .year {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-box .text {
    font-weight: 500;
}

.about-features {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.about-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-features i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* 10. SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-10px) perspective(1000px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-primary);
}

.service-card-inner {
    transform: translateZ(20px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-title {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.service-description {
    margin-bottom: 2rem;
}

.service-link {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link i {
    transition: transform var(--transition-speed) ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* 11. CALCULATOR SECTION */
.calculator-section {
    background-color: var(--color-bg-light);
}

.calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

.calculator-step {
    display: none;
    text-align: center;
}

.calculator-step.active {
    display: block;
}

.step-title {
    margin-bottom: 2.5rem;
    color: var(--color-white);
}

.services-options,
.budget-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.services-options label,
.budget-options label {
    cursor: pointer;
}

.services-options input,
.budget-options input {
    display: none;
}

.services-options span,
.budget-options span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
}

.services-options input:checked+span,
.budget-options input:checked+span {
    background-color: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
}

.services-options span:hover,
.budget-options span:hover {
    border-color: var(--color-primary);
    color: var(--color-white);
}

.step-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* 12. TESTIMONIALS SECTION */
.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform var(--transition-speed) ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content {
    background-color: var(--color-bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--color-primary);
    text-align: center;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.author-name {
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--color-primary);
    font-weight: 500;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    color: var(--color-white);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.slider-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
}

/* 13. CTA SECTION */
.cta-section {
    padding: 0;
}

.cta-wrapper {
    background: linear-gradient(110deg, var(--color-primary), var(--color-secondary));
    padding: 4rem;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-bg);
}

.cta-title {
    color: var(--color-bg);
    font-size: 2.2rem;
}

.cta-text {
    max-width: 500px;
    margin-bottom: 0;
}

.cta-action .btn-primary {
    background: var(--color-white);
    color: var(--color-bg-light);
}

/* 14. SUBPAGE STYLES (LEGAL, CONTACT) */
.page-header {
    background-color: var(--color-bg-light);
    padding: 5rem 0;
    text-align: center;
    padding-top: calc(var(--header-height) + 3rem);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: var(--color-text);
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs span {
    color: var(--color-white);
}

.breadcrumbs i {
    font-size: 0.8rem;
    margin: 0 0.5rem;
}

.page-content {
    padding: 5rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--color-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.content-wrapper ul {
    list-style: disc;
    padding-left: 20px;
}

.content-wrapper ul li {
    margin-bottom: 0.5rem;
}

/* 15. CONTACT PAGE SPECIFIC */
.contact-page-section {
    padding-bottom: 6rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 4rem;
    background-color: var(--color-bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.contact-info-block h3 {
    color: var(--color-white);
}

.contact-methods {
    margin-top: 2rem;
}

.contact-methods li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-methods i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 5px;
}

.contact-methods h4 {
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.contact-form-wrapper {
    background-color: var(--color-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}


/* 16. POPUP/MODAL */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}

.popup:target {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--color-bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-speed) ease;
}

.popup:target .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.popup-content h3 {
    color: var(--color-white);
}

.popup-close {
    margin-top: 1.5rem;
}

/* 17. ANIMATIONS & KEYFRAMES */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* 18. RESPONSIVE DESIGN (MEDIA QUERIES) */

/* Tablets and larger */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col.footer-about {
        grid-column: 1 / -1;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-content {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-text-content {
        text-align: center;
    }

    .about-features {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-experience-box {
        right: 10px;
        bottom: 10px;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    section {
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links,
    .contact-info,
    .footer-links ul {
        justify-content: center;
        text-align: left;
        /* for contact info */
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links ul {
        text-align: center;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-wrapper {
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .calculator-wrapper {
        padding: 1.5rem;
    }

    .services-options,
    .budget-options {
        gap: 0.5rem;
    }

    .services-options span,
    .budget-options span {
        padding: 0.6rem 1.2rem;
    }

    .step-buttons {
        flex-direction: column;
    }

    .testimonial-content {
        padding: 2rem;
    }
}