/* How It Works Page Specific Styles */

/* Hero Section */
.how-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="steps" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><text x="15" y="20" text-anchor="middle" fill="rgba(255,255,255,0.05)" font-size="8">1</text></pattern></defs><rect width="100" height="100" fill="url(%23steps)"/></svg>');
}

.how-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.how-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.how-hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Main Steps Section */
.main-steps {
    padding: 100px 0;
}

.step-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
    padding: 4rem 0;
    position: relative;
}

.step-detail::after {
    content: '';
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.step-detail:last-child::after {
    display: none;
}

.step-detail.reverse {
    direction: rtl;
}

.step-detail.reverse > * {
    direction: ltr;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.step-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0;
}

.step-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.step-highlights {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.highlight-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.step-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.photo-tips {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.photo-tips h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.photo-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.photo-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.result-features {
    margin-top: 2rem;
}

.result-features h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Step Visuals */
.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.step-image:hover {
    transform: scale(1.02);
}

/* Installation Demo */
.installation-demo {
    width: 100%;
    max-width: 450px;
}

.browser-window {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.browser-header {
    background: #f1f3f4;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.browser-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close {
    background: #ff5f57;
}

.control.minimize {
    background: #ffbd2e;
}

.control.maximize {
    background: #28ca42;
}

.browser-url {
    background: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    flex: 1;
}

.browser-content {
    padding: 2rem;
}

.extension-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.extension-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.extension-info {
    flex: 1;
}

.extension-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.extension-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.extension-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffc107;
}

.extension-rating span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-install {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-install:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.install-arrow {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: bounce-vertical 2s infinite;
}

.success-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #d4edda;
    color: #155724;
    border-radius: var(--border-radius);
    border: 1px solid #c3e6cb;
    font-weight: 500;
}

.success-message i {
    color: #28a745;
}

/* Photo Upload Demo */
.photo-upload-demo {
    width: 100%;
    max-width: 400px;
}

.upload-interface {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.upload-header {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.upload-area {
    padding: 2rem;
}

.upload-zone {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    background: var(--bg-light);
    transition: var(--transition);
}

.upload-zone:hover {
    border-color: var(--primary-color);
    background: rgba(52, 152, 219, 0.05);
}

.upload-zone i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.upload-zone h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.upload-zone p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.upload-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-upload {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-upload:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.processing-status {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.status-item i {
    color: #28a745;
}

.status-item.processing i,
.status-item.processing .spinner {
    color: var(--primary-color);
}

.status-item.pending i {
    color: var(--text-light);
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Results Demo */
.results-demo {
    width: 100%;
    max-width: 450px;
}

.result-screen {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.result-header {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.confidence-score {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.result-content {
    padding: 2rem;
}

.try-on-result {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.result-image {
    flex: 1;
    aspect-ratio: 3/4;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid var(--border-color);
}

.result-image i {
    font-size: 3rem;
    color: var(--text-light);
}

.overlay-clothing {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.result-analysis {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.analysis-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.analysis-item .label {
    font-weight: 500;
    color: var(--text-dark);
}

.analysis-item .value {
    font-weight: 600;
    color: var(--text-dark);
}

.analysis-item .value.good {
    color: #28a745;
}

.deal-notification {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffc107;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.deal-badge {
    background: var(--gradient-secondary);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.deal-info {
    flex: 1;
}

.deal-info h5 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.deal-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.btn-claim {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Quick Start Guide */
.quick-start {
    padding: 80px 0;
    background: var(--bg-light);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guide-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.guide-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-light);
}

.guide-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.guide-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.guide-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.guide-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.guide-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.guide-card a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-light);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(52, 152, 219, 0.05);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Animations */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes bounce-vertical {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .how-hero h1 {
        font-size: 2.5rem;
    }

    .how-hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .step-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 6rem;
    }

    .step-detail.reverse {
        direction: ltr;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-title h2 {
        font-size: 2rem;
    }

    .step-actions {
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .try-on-result {
        flex-direction: column;
        gap: 1rem;
    }

    .deal-notification {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .how-hero {
        padding: 100px 0 60px;
    }

    .how-hero h1 {
        font-size: 2rem;
    }

    .main-steps {
        padding: 60px 0;
    }

    .step-detail {
        margin-bottom: 4rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-title h2 {
        font-size: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .extension-card {
        flex-direction: column;
        text-align: center;
    }

    .upload-buttons {
        flex-direction: column;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }

    .workflow-steps {
        gap: 3rem;
    }

    .workflow-step {
        flex-direction: column;
        text-align: center;
    }

    .workflow-step.reverse {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: 1rem;
    }

    .workflow-image {
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
    }

    .workflow-image img {
        max-width: 100%;
        height: auto;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-medium);
        border: 1px solid var(--border-color);
    }

    .workflow-svg {
        width: 100%;
        max-width: 400px;
        height: auto;
        filter: drop-shadow(var(--shadow-medium));
    }

    /* Quick Start Guide */
    .quick-start {
        padding: 80px 0;
        background: var(--bg-light);
    }

    .guide-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .guide-card {
        background: var(--bg-white);
        padding: 2rem;
        border-radius: var(--border-radius-large);
        box-shadow: var(--shadow-light);
        border: 1px solid var(--border-color);
        text-align: center;
        transition: var(--transition);
    }

    .guide-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
    }

    .guide-icon {
        width: 80px;
        height: 80px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--text-white);
        margin: 0 auto 1.5rem;
        box-shadow: var(--shadow-light);
    }

    .guide-card h3 {
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .guide-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    .guide-card li {
        padding: 0.5rem 0;
        color: var(--text-light);
        position: relative;
        padding-left: 1.5rem;
    }

    .guide-card li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
    }

    .guide-card a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

    .guide-card a:hover {
        text-decoration: underline;
    }

    /* FAQ Section */
    .faq-section {
        padding: 80px 0;
    }

    .faq-grid {
        display: grid;
        gap: 1rem;
        margin-top: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-item {
        background: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        overflow: hidden;
        transition: var(--transition);
    }

    .faq-item:hover {
        box-shadow: var(--shadow-light);
    }

    .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-light);
        transition: var(--transition);
    }

    .faq-question:hover {
        background: rgba(52, 152, 219, 0.05);
    }

    .faq-question h3 {
        margin: 0;
        color: var(--text-dark);
        font-size: 1.1rem;
    }

    .faq-question i {
        color: var(--primary-color);
        transition: var(--transition);
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item.active .faq-answer {
        padding: 1.5rem;
        max-height: 200px;
    }

    .faq-answer p {
        margin: 0;
        color: var(--text-light);
        line-height: 1.6;
    }

    /* Animations */
    @keyframes pulse-ring {
        0% {
            transform: scale(0.8);
            opacity: 1;
        }
        100% {
            transform: scale(1.2);
            opacity: 0;
        }
    }

    @keyframes bounce-vertical {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .how-hero h1 {
            font-size: 2.5rem;
        }
    
        .how-hero p {
            font-size: 1.1rem;
        }
    
        .hero-stats {
            gap: 2rem;
        }
    
        .stat-number {
            font-size: 2rem;
        }
    
        .step-detail {
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 6rem;
        }
    
        .step-detail.reverse {
            direction: ltr;
        }
    
        .step-header {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
    
        .step-number {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
    
        .workflow-image {
            margin-top: 1.5rem;
            min-height: 250px;
        }
    
        .workflow-svg {
            max-width: 350px;
        }
    }