:root {
    /* Light theme (default) */
    --primary-color: #4a90e2;
    --secondary-color: #f5f5f5;
    --text-color: #333;
    --background-color: #fff;
    --header-bg: #ffffff;
    --footer-bg: #f5f5f5;
    --link-color: #4a90e2;
    --link-hover-color: #2c6cb0;
    --border-color: #e0e0e0;
    --primary-color-rgb: 74, 144, 226; /* RGB of #4a90e2 */
}

/* Dark theme */
[data-theme="dark"] {
    --primary-color: #61dafb;
    --secondary-color: #333;
    --text-color: #f5f5f5;
    --background-color: #121212;
    --header-bg: #1a1a1a;
    --footer-bg: #1a1a1a;
    --link-color: #61dafb;
    --link-hover-color: #2c6cb0;
    --border-color: #444;
    --primary-color-rgb: 97, 218, 251; /* RGB of #61dafb */
}

/* Pink theme */
[data-theme="pink"] {
    --primary-color: #6b2572;
    --secondary-color: #fff0f5;
    --text-color: #800080;
    --background-color: #fff0f5;
    --header-bg: #f37cc5;
    --footer-bg: #ff69b4;
    --link-color: #ffffff;
    --link-hover-color: #ff1493;
    --border-color: #ff69b4;
    --primary-color-rgb: 107, 37, 114; /* RGB of #6b2572 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    transition: all 0.3s ease;
    overflow-x: hidden;
}

/* Add this class for body scroll lock */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Mobile menu backdrop */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* Header Styles */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background-color: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.brand-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.main-nav ul {
    display: flex;
    list-style-type: none;
    align-items: center;
}

.main-nav li {
    margin-left: 1.5rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: block;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.account-btn {
    background: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.account-btn a {
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
    margin-left: 1rem;
    background: transparent;
    border: none;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 0;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Styles for 'X' icon when menu is active */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Main content area */
main {
    min-height: 70vh;
}

/* Button styles */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.primary {
    background-color: var(--primary-color);
    color: white;
}

.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* Button style for tertiary actions if needed */
.btn.tertiary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-weight: 500;
}

.btn.tertiary:hover {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.03) 0%, rgba(var(--primary-color-rgb), 0.01) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 60%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.05) 0%, transparent 60%);
    border-radius: 0 0 0 100%;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: linear-gradient(225deg, rgba(var(--primary-color-rgb), 0.03) 0%, transparent 70%);
    border-radius: 0 100% 0 0;
}

.accent-line {
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0.1;
}

.accent-line-1 {
    top: 15%;
    left: 0;
    width: 150px;
    height: 1px;
}

.accent-line-2 {
    top: 15%;
    left: 0;
    width: 1px;
    height: 150px;
}

.accent-line-3 {
    bottom: 15%;
    right: 0;
    width: 150px;
    height: 1px;
}

.accent-line-4 {
    bottom: 15%;
    right: 0;
    width: 1px;
    height: 150px;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 800;
}

.accent-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.accent-text::after {
    content: '';
    position: absolute;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.1;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.feature-icon {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-text h3 {
    margin: 0;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.feature-text p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.highlight-dot {
    width: 10px;
    height: 10px;
    background-color: #4caf50;
    border-radius: 50%;
    display: inline-block;
}

.cta-note p {
    font-size: 0.875rem;
    opacity: 0.7;
    margin: 0;
}

.hero-image-container {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-element {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    transition: all 0.3s ease;
}

.resume {
    width: 260px;
    height: 360px;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 1.5rem;
    animation: float 6s infinite alternate ease-in-out;
}

.portfolio {
    width: 280px;
    height: 320px;
    right: 5%;
    top: 40%;
    transform: translateY(-50%);
    z-index: 1;
    padding: 1.5rem;
    animation: float 7s 1s infinite alternate-reverse ease-in-out;
}

.resume-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.resume-header {
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.resume-text {
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 4px;
    width: 100%;
}

.resume-text.short {
    width: 70%;
}

.portfolio-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portfolio-header {
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 6px;
}

.portfolio-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.portfolio-item {
    background-color: #e0e0e0;
    border-radius: 6px;
    height: 80px;
}

.decoration-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--primary-color) 2px, transparent 2.5px);
    background-size: 15px 15px;
    opacity: 0.15;
    border-radius: 50%;
}

.dot-pattern-1 {
    top: 10%;
    right: 5%;
    animation: rotate 180s linear infinite;
}

.dot-pattern-2 {
    bottom: 10%;
    left: 0;
    animation: rotate 240s linear infinite reverse;
}

@keyframes float {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(-54%); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Core Benefits Section Styles */
.core-benefits-section {
    padding: 4rem 5%;
    background-color: var(--secondary-color); /* Or a slightly different shade from background */
    text-align: center;
    transition: background-color 0.3s ease;
}

.core-benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--background-color);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: left; /* Align text to left within cards */
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(var(--primary-color-rgb), 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    height: 40px; /* Fixed height for icon area */
    line-height: 40px; /* Vertically center icon if needed */
}

.benefit-icon i {
    transition: color 0.3s ease;
}

.benefit-title {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.benefit-description {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1.6;
    flex-grow: 1; /* Allows description to take up space, pushing button down if any */
    transition: color 0.3s ease, opacity 0.3s ease;
}

/* How It Works Section Styles */
.how-it-works-section {
    padding: 4rem 5%;
    background-color: var(--background-color); /* Or var(--secondary-color) for alternation */
    text-align: center;
    transition: background-color 0.3s ease;
}

.how-it-works-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background-color: var(--secondary-color); /* Slightly different background for cards */
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content within the card */
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(var(--primary-color-rgb), 0.1);
}

.step-number-icon {
    position: relative;
    display: inline-flex; /* Use flex to align icon and number */
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-number-icon i {
    font-size: 1.8rem; /* Icon size */
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.step-number-icon span {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--background-color); /* Creates a nice separation */
}

.step-title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.step-description {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1.5;
    transition: color 0.3s ease, opacity 0.3s ease;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 4rem 5%;
    background-color: var(--background-color); /* Or var(--secondary-color) for alternation */
    text-align: center;
    transition: background-color 0.3s ease;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
[data-theme="dark"] .testimonial-card {
    background-color: var(--header-bg); /* Slightly different shade in dark mode */
}

.testimonial-quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto; /* Pushes author to the bottom */
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-name {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    margin: 0;
}

/* Footer Styles */
.site-footer-main {
    background-color: var(--footer-bg);
    color: var(--text-color);
    padding: 3rem 5% 1.5rem;
    border-top: 1px solid var(--border-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    flex: 1;
    min-width: 200px; /* Ensures columns don't get too squished */
}

.footer-column h3, .footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.footer-column.footer-about h3 { /* For brand name in footer */
    font-weight: 700;
    font-size: 1.5rem; /* Match header brand name */
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--text-color);
    opacity: 0.8;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-theme-switcher .theme-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.theme-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent; /* Base border */
}

.theme-btn:hover {
    transform: scale(1.1);
}

.theme-btn.active {
    box-shadow: 0 0 0 3px var(--primary-color); /* Highlight active theme */
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

.social-links a {
    color: var(--text-color);
    opacity: 0.7;
    margin: 0 0.5rem;
    font-size: 1.1rem;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-text {
        order: 2;
        max-width: 100%;
    }
    
    .hero-image-container {
        order: 1;
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin: 0 auto 2rem;
    }
    
    .hero-features {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }
    
    .feature {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .floating-element.resume {
        left: 50%;
        transform: translate(-140px, -50%);
    }
    
    .floating-element.portfolio {
        right: 50%;
        transform: translate(140px, -50%);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 80%;
        height: 100vh;
        background-color: var(--background-color);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 4rem 1.5rem 2rem;
        transition: right 0.4s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .main-nav li {
        margin: 0.8rem 0;
        width: 100%;
        text-align: left;
    }
    
    .main-nav a {
        padding: 0.8rem 0;
        color: var(--text-color);
        font-size: 1.1rem;
        display: block;
        width: 100%;
        font-weight: 500;
    }

    .main-nav a:hover {
        color: var(--primary-color);
    }
    
    .account-btn {
        margin-top: 1.5rem;
        padding: 0.6rem 1.2rem;
        width: auto;
        display: inline-block;
        text-align: center;
    }

    .account-btn a {
        color: white !important;
        font-weight: 600;
    }

    .footer-container {
        flex-direction: column;
        align-items: center; /* Center columns on smaller screens */
        text-align: center;
    }

    .footer-column {
        min-width: 100%; /* Full width for columns */
        margin-bottom: 1.5rem;
    }
    .footer-column ul {
        display: inline-block; /* Center list items if text is centered */
    }

    .footer-theme-switcher .theme-buttons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr; /* Stack cards on smaller screens */
    }

    .benefit-card {
        text-align: center; /* Center text in cards on mobile if preferred */
    }

    .benefit-icon {
         margin-left: auto; /* Center icon if card text is centered */
         margin-right: auto;
    }

    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjust for better fit on tablets */
    }

    .testimonials-grid {
        grid-template-columns: 1fr; /* Stack testimonials on smaller tablets/mobile */
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .cta-note {
        margin: 0.5rem 0 0;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .floating-element.resume {
        width: 200px;
        height: 280px;
        transform: translate(-110px, -50%);
    }
    
    .floating-element.portfolio {
        width: 200px;
        height: 240px;
        transform: translate(110px, -50%);
    }

    .section-title {
        font-size: 1.8rem;
    }

    .steps-container {
        grid-template-columns: 1fr; /* Stack step cards on smaller mobile */
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .floating-element.resume {
        width: 140px;
        height: 200px;
        transform: translate(-75px, -50%);
    }
    
    .floating-element.portfolio {
        width: 140px;
        height: 180px;
        transform: translate(75px, -50%);
    }
    
    .feature {
        align-items: center;
    }
    
    .accent-line-1, .accent-line-3 {
        width: 50px;
    }
    
    .accent-line-2, .accent-line-4 {
        height: 50px;
    }
}
