/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0d1117;
    color: #e6edf3;
    line-height: 1.6;
}

/* ===================================
   LANDING PAGE LAYOUT
   =================================== */
body.landing-page {
    background: linear-gradient(135deg, #c8102e 0%, #ff0000 50%, #8b0000 100%);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

/* Animated Canadian Flag Pattern Background */
body.landing-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.4;
    z-index: 0;
}

/* Multiple Floating Maple Leaves */
body.landing-page::after {
    content: '🍁 🍁 🍁 🍁 🍁 🍁 🍁 🍁 🍁 🍁';
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    font-size: 30px;
    letter-spacing: 80px;
    animation: fall1 20s linear infinite;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

/* Additional leaf layers */
.background-wrapper::before {
    content: '🍁 🍁 🍁 🍁 🍁 🍁 🍁';
    position: fixed;
    top: -150px;
    left: 50px;
    width: 100%;
    font-size: 35px;
    letter-spacing: 120px;
    animation: fall2 25s linear infinite 5s;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.background-wrapper::after {
    content: '🍁 🍁 🍁 🍁 🍁 🍁 🍁 🍁';
    position: fixed;
    top: -80px;
    left: 100px;
    width: 100%;
    font-size: 40px;
    letter-spacing: 100px;
    animation: fall3 18s linear infinite 3s;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

@keyframes fall1 {
    0% {
        top: -100px;
        transform: rotate(0deg) translateX(0);
    }
    25% {
        transform: rotate(90deg) translateX(30px);
    }
    50% {
        transform: rotate(180deg) translateX(-30px);
    }
    75% {
        transform: rotate(270deg) translateX(30px);
    }
    100% {
        top: 100vh;
        transform: rotate(360deg) translateX(0);
    }
}

@keyframes fall2 {
    0% {
        top: -150px;
        transform: rotate(0deg) translateX(0) scale(1);
    }
    25% {
        transform: rotate(-90deg) translateX(-40px) scale(1.1);
    }
    50% {
        transform: rotate(-180deg) translateX(40px) scale(0.9);
    }
    75% {
        transform: rotate(-270deg) translateX(-40px) scale(1.1);
    }
    100% {
        top: 100vh;
        transform: rotate(-360deg) translateX(0) scale(1);
    }
}

@keyframes fall3 {
    0% {
        top: -80px;
        transform: rotate(0deg) translateX(0) translateY(0);
    }
    20% {
        transform: rotate(72deg) translateX(25px) translateY(20px);
    }
    40% {
        transform: rotate(144deg) translateX(-25px) translateY(40px);
    }
    60% {
        transform: rotate(216deg) translateX(25px) translateY(60px);
    }
    80% {
        transform: rotate(288deg) translateX(-25px) translateY(80px);
    }
    100% {
        top: 100vh;
        transform: rotate(360deg) translateX(0) translateY(100px);
    }
}

.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* ===================================
   LANDING PAGE CONTENT
   =================================== */
.content {
    text-align: center;
    max-width: 800px;
    padding: 60px 50px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(200, 16, 46, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 3px solid rgba(200, 16, 46, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

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

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #c8102e 0%, #ff1744 50%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(200, 16, 46, 0.2);
    letter-spacing: -1px;
    position: relative;
}

/* Maple Leaf Decoration */
.main-title::before {
    content: '🍁';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    opacity: 0.7;
}

.main-title::after {
    content: '🍁';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    opacity: 0.7;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #2c3e50;
    opacity: 0.85;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(200, 16, 46, 0.05), transparent, rgba(200, 16, 46, 0.05));
    padding: 15px 30px;
    border-radius: 12px;
}

.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #c8102e 0%, #ff1744 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(200, 16, 46, 0.6);
}

.btn-secondary {
    background: #ffffff;
    color: #c8102e;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid #c8102e;
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.02);
    background: #c8102e;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(200, 16, 46, 0.6);
}

/* ===================================
   USER DATA FORM CONTAINER
   =================================== */
.user_data-container {
    max-width: 600px;
    width: 100%;
    padding: 50px 45px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(200, 16, 46, 0.2);
    border: 3px solid rgba(200, 16, 46, 0.3);
}

.user_data-container h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 35px;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #c8102e 0%, #ff1744 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   FORM STYLES
   =================================== */
form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

input[type="text"],
select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 24px;
    border-radius: 12px;
    border: 2px solid rgba(200, 16, 46, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

input[type="text"]:focus,
select:focus {
    outline: none;
    border-color: #c8102e;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c8102e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

select option {
    background: #ffffff;
    color: #2c3e50;
    padding: 10px;
}

button[type="submit"],
button {
    width: 100%;
    background: linear-gradient(135deg, #c8102e 0%, #ff1744 100%);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    margin-top: 10px;
    font-family: inherit;
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

button[type="submit"]:hover,
button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 16, 46, 0.6);
    filter: brightness(1.1);
}

button[type="submit"]:active,
button:active {
    transform: translateY(-1px);
}

/* ===================================
   ASSISTANCE PAGE
   =================================== */
.assistance-page-container {
    max-width: 1000px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
}

.assistance-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    background:  #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.assistance-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 500;
}

/* HORIZONTAL SCROLL CONTAINER STYLES */
.assistance-container-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 20px 0 40px;
    max-width: 100%;
}

.assistance-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 10px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.assistance-container::-webkit-scrollbar {
    display: none;
}

.category-link {
    flex: 0 0 auto;
    width: 160px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px 20px;
    border-radius: 16px;
    border: 3px solid rgba(200, 16, 46, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #2c3e50;
    /* Optional: enable snap scrolling */
    scroll-snap-align: start;
}

.category-link:hover {
    transform: translateY(-12px) scale(1.05);
    color: #ffffff;
    background: linear-gradient(135deg, #c8102e 0%, #ff1744 100%);
    border-color: #ffffff;
    box-shadow: 0 15px 45px rgba(200, 16, 46, 0.6);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #c8102e 0%, #ff1744 100%);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
    transition: all 0.4s ease;
}

.category-link:hover .category-icon {
    background: #ffffff;
    color: #c8102e;
    transform: rotate(5deg);
}

.category-link span {
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn-left {
    left: -25px;
}

.scroll-btn-right {
    right: -25px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .scroll-btn {
        display: none;
    }
    
    .assistance-container-wrapper {
        margin: 20px -10px 40px;
    }
    
    .assistance-container {
        padding: 20px 10px;
    }
}

.btn-back {
    background: #ffffff;
    color: #c8102e;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid #c8102e;
}

.btn-back:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #c8102e 0%, #ff1744 100%);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 12px 35px rgba(200, 16, 46, 0.6);
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */
.about-container {
    max-width: 1000px;
    width: 100%;
    padding: 0;
}

.about-hero {
    text-align: center;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    margin-bottom: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(200, 16, 46, 0.2);
    border: 3px solid rgba(200, 16, 46, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.about-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #c8102e 0%, #ff1744 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.about-tagline {
    font-size: 1.3rem;
    color: #2c3e50;
    opacity: 0.85;
    font-weight: 500;
}

.about-section {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(200, 16, 46, 0.2);
    border: 3px solid rgba(200, 16, 46, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.section-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #c8102e;
    margin-bottom: 25px;
    text-align: center;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: left;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.05), rgba(255, 23, 68, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(200, 16, 46, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
    border-color: #c8102e;
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.2);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c8102e 0%, #ff1744 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c8102e;
    margin-bottom: 10px;
}

.step-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2c3e50;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.05), rgba(255, 23, 68, 0.05));
    border-radius: 16px;
    border: 2px solid rgba(200, 16, 46, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #c8102e 0%, #ff1744 100%);
    border-color: #ffffff;
    box-shadow: 0 15px 45px rgba(200, 16, 46, 0.6);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c8102e;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #ffffff;
}

.feature-text {
    font-size: 0.95rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-text {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.about-cta {
    text-align: center;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(200, 16, 46, 0.2);
    border: 3px solid rgba(200, 16, 46, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #c8102e 0%, #ff1744 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 35px;
    opacity: 0.85;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-home {
    background: transparent;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .main-title::before,
    .main-title::after {
        display: none;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .content {
        padding: 40px 30px;
    }

    .user_data-container {
        padding: 35px 25px;
    }

    .user_data-container h1 {
        font-size: 1.6rem;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .category-link {
        width: 140px;
        min-height: 160px;
    }

    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    /* Assistance Page Mobile */
    .assistance-title {
        font-size: 2.2rem;
    }

    .assistance-subtitle {
        font-size: 1.1rem;
    }

    /* About Page Responsive */
    .about-hero {
        padding: 40px 30px;
    }

    .about-icon {
        font-size: 4rem;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-tagline {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 35px 25px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .about-cta {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 20px 15px;
    }

    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .content {
        padding: 30px 20px;
    }

    .user_data-container {
        padding: 30px 20px;
    }

    /* Assistance Page Mobile */
    .assistance-title {
        font-size: 1.8rem;
    }

    .assistance-subtitle {
        font-size: 1rem;
    }

    .category-link {
        width: 130px;
        min-height: 150px;
        padding: 20px 15px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* About Page Mobile */
    .about-hero {
        padding: 30px 20px;
    }

    .about-icon {
        font-size: 3.5rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-tagline {
        font-size: 1rem;
    }

    .about-section {
        padding: 30px 20px;
    }

    .section-icon {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-text {
        font-size: 0.95rem;
    }

    .step-card {
        padding: 20px;
        gap: 15px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .about-cta {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}