/* ============================================
   KARIS EDS CONSULT - MAIN STYLESHEET
   Version: 1.0
   Description: Professional educational consultancy website
   
   TABLE OF CONTENTS:
   1. RESET & BASE STYLES
   2. TYPOGRAPHY
   3. LAYOUT & CONTAINERS
   4. HEADER & NAVIGATION
   5. HERO SECTION
   6. ABOUT SECTION
   7. SERVICES SECTION
   8. WHY CHOOSE US SECTION
   9. FOOTER
   10. UTILITIES
   11. RESPONSIVE DESIGN
============================================ */

/* --------------------------------------------
   1. RESET & BASE STYLES
-------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* --------------------------------------------
   2. TYPOGRAPHY
-------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a202c;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #2b6cb0;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #2c5282;
    text-decoration: underline;
}

/* --------------------------------------------
   3. LAYOUT & CONTAINERS
-------------------------------------------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: #2b6cb0;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2b6cb0, #4299e1);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    color: #718096;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* --------------------------------------------
   4. HEADER & NAVIGATION
-------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    padding: 0.75rem 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.main-navigation {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: flex-end;
}

.nav-menu li a {
    font-weight: 600;
    color: #2d3748;
    padding: 0.5rem 0;
    position: relative;
    text-decoration: none;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2b6cb0;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #2b6cb0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #2d3748;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-menu {
    list-style: none;
    padding: 2rem;
}

.mobile-nav-menu li {
    margin-bottom: 1rem;
}

.mobile-nav-menu li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #2d3748;
    border-bottom: 1px solid #e2e8f0;
    text-decoration: none;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2b6cb0;
    color: white;
    padding: 8px 16px;
    z-index: 1001;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* --------------------------------------------
   5. HERO SECTION
-------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: zoomIn 20s ease infinite;
}

@keyframes zoomIn {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    color: #ffffff;
}

.hero-title span {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.1s both;
    color: #e2e8f0;
}

.hero-desc {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Buttons - SQUARE CORNERS (No Border Radius) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: #ffd700;
    color: #1a202c;
}

.btn-primary:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    text-decoration: none;
    color: #1a202c;
}

.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #2b6cb0;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #2b6cb0;
    border: 2px solid #2b6cb0;
}

.btn-outline:hover {
    background: #2b6cb0;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

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

/* --------------------------------------------
   6. ABOUT SECTION
-------------------------------------------- */
.about-section {
    padding: 5rem 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------
   7. SERVICES SECTION
-------------------------------------------- */
.services-section {
    padding: 5rem 0;
    background: #f7fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
    border-color: #2b6cb0;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2b6cb0, #4299e1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.service-title {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.service-description {
    color: #4a5568;
    line-height: 1.7;
}

/* --------------------------------------------
   8. WHY CHOOSE US SECTION
-------------------------------------------- */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a202c, #2d3748);
    color: #ffffff;
}

.why-choose-section .section-title {
    color: #ffffff;
}

.why-choose-section .section-title span {
    color: #ffd700;
}

.why-choose-section .section-divider {
    background: #ffd700;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-item i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.why-item h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.why-item p {
    color: #cbd5e0;
}

/* --------------------------------------------
   9. FOOTER
-------------------------------------------- */
.site-footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-about h3 span {
    color: #ffd700;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffd700;
    text-decoration: none;
}

.footer-contact li i {
    width: 25px;
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    font-size: 0.875rem;
}

/* --------------------------------------------
   10. UTILITIES
-------------------------------------------- */
/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-top:hover {
    background: #2c5282;
    transform: translateY(-3px);
}

.scroll-top.show {
    display: flex;
}

/* WhatsApp Chat Button - RIGHT SIDE */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 99;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn .whatsapp-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.whatsapp-btn:hover {
    background: #20b859;
    transform: scale(1.05);
    text-decoration: none;
    color: #ffffff;
}

/* --------------------------------------------
   11. RESPONSIVE DESIGN
-------------------------------------------- */
/* Tablet */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .about-grid {
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid,
    .services-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        gap: 2rem;
        text-align: center;
    }
    
    .footer-contact li {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
    
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn .whatsapp-text {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 0.75rem;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}


/* --------------------------------------------
   ABOUT PAGE SPECIFIC STYLES
-------------------------------------------- */

/* Page Header */
.page-header {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-title span {
    color: #ffd700;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
}

/* Section Title Left Aligned */
.section-title-left {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: #1a202c;
}

.section-title-left span {
    color: #2b6cb0;
}

.section-title-left::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2b6cb0;
}

/* About Main Section */
.about-main-section {
    padding: 5rem 0;
    background: #ffffff;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-main-text {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-main-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    background: #f7fafc;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-card,
.vision-card,
.values-card {
    background: #ffffff;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.mission-icon,
.vision-icon,
.values-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2b6cb0, #4299e1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i,
.vision-icon i,
.values-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: #4a5568;
    line-height: 1.7;
}

.values-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.values-card li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.values-card li i {
    color: #2b6cb0;
    font-size: 1rem;
}

/* What We Do Section */
.what-we-do-section {
    padding: 5rem 0;
    background: #ffffff;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.what-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.what-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2b6cb0;
}

.what-item i {
    font-size: 2.5rem;
    color: #2b6cb0;
    margin-bottom: 1rem;
}

.what-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.what-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Our Approach Section */
.our-approach-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.approach-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.approach-content {
    position: relative;
    z-index: 2;
}

.approach-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.light-divider {
    background: #ffd700;
}

.section-title.light {
    color: #ffffff;
}

.section-title.light span {
    color: #ffd700;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.step {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #ffd700;
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: #f7fafc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.team-title {
    color: #2b6cb0;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.team-bio {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b6cb0;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
}

/* About CTA Section */
.about-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a202c, #2d3748);
}

.cta-content {
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #cbd5e0;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-content .btn-primary {
    background: #ffd700;
    color: #1a202c;
}

.cta-content .btn-primary:hover {
    background: #fbbf24;
}

/* Responsive for About Page */
@media (max-width: 992px) {
    .mission-vision-grid,
    .what-we-do-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-main-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid,
    .what-we-do-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title-left {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .values-card ul {
        padding-left: 1rem;
    }
}

