* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0f;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-cyan: #00e5ff;
    --accent-pink: #ff00bb;
    --accent-purple: #9d00ff;
    --border-glass: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 3D Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    pointer-events: auto;
}

/* Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(157, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 10, 15, 0.7);
    border-bottom: 1px solid var(--border-glass);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--bg-glass-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

/* Sections */
section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Industries Section */
.industries {
    background: linear-gradient(180deg, transparent, rgba(157, 0, 255, 0.05), transparent);
}

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

.industry-card {
    padding: 2rem;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-10px);
    background: var(--bg-glass-hover);
    box-shadow: var(--shadow-glow);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
}

.industry-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Process Journey Section */
.process-journey {
    background: transparent;
}

.journey-header {
    text-align: center;
    margin-bottom: 4rem;
}

.journey-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.journey-step {
    display: flex;
    align-items: stretch;
}

.step-arrow {
    display: none;
}

.step-card {
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-duration {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.step-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.deliverable-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    white-space: nowrap;
}

/* Cases Section */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-card {
    padding: 2.5rem;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.case-card:hover::before {
    transform: scaleX(1);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.case-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.case-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.case-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.case-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    flex: 1;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Expertise Section */
.expertise {
    background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.05), transparent);
}

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

.expertise-card {
    padding: 2rem;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
    background: var(--bg-glass-hover);
    box-shadow: 0 0 30px rgba(255, 0, 170, 0.3);
}

.expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-pink);
}

.expertise-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How We Work Section */
.how-we-work {
    background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.03), transparent);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.journey-card {
    padding: 2.5rem;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.journey-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
}

.journey-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.journey-card:hover::before {
    transform: scaleX(1);
}

.journey-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.journey-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.journey-card:nth-child(1) .journey-icon svg {
    color: var(--accent-cyan);
}

.journey-card:nth-child(2) .journey-icon svg {
    color: var(--accent-purple);
}

.journey-card:nth-child(3) .journey-icon svg {
    color: var(--accent-pink);
}

.journey-card:hover .journey-icon {
    opacity: 0.8;
}

.journey-card:hover .journey-icon svg {
    transform: scale(1.1);
}

.journey-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.journey-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.journey-meta {
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-glass);
}

.journey-deliverables {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.journey-outcome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.journey-card:nth-child(1) .arrow-icon {
    color: var(--accent-cyan);
}

.journey-card:nth-child(2) .arrow-icon {
    color: var(--accent-purple);
}

.journey-card:nth-child(3) .arrow-icon {
    color: var(--accent-pink);
}

.journey-card:hover .arrow-icon {
    transform: translateX(5px);
}

/* About Section */
.about {
    background: linear-gradient(180deg, transparent, rgba(157, 0, 255, 0.03), transparent);
}

.about-content-minimal {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, transparent, rgba(157, 0, 255, 0.05));
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border: none;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.4);
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

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

.submit-btn:hover .btn-glow {
    width: 300px;
    height: 300px;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-glass);
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(10px);
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Success Notification */
.notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    visibility: visible;
}

.notification-content {
    background: linear-gradient(145deg, rgba(10, 10, 15, 0.95), rgba(10, 10, 15, 0.85));
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 400px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.notification.show .notification-content {
    transform: scale(1);
}

.notification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--accent-cyan);
}

.notification-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.notification-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Insights Page Styles */
.insights-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}

.insights-hero-content {
    text-align: center;
    max-width: 800px;
}

.insights-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.insights-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.articles-section {
    padding: 4rem 2rem 6rem;
}

.articles-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.article-card {
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.article-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-content {
    padding: 2.5rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-date::before {
    content: '📅 ';
}

.article-read-time::before {
    content: '⏱️ ';
}

.article-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.article-highlights {
    background: rgba(0, 229, 255, 0.05);
    border-left: 3px solid var(--accent-cyan);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.article-highlights h3 {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.article-highlights ul {
    list-style: none;
    padding: 0;
}

.article-highlights li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.article-highlights li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.article-highlights strong {
    color: var(--text-primary);
}

.article-cta {
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.1), rgba(255, 0, 170, 0.1));
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 1.5rem;
}

.article-cta p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.article-cta strong {
    color: var(--accent-pink);
}

/* Insights CTA Section */
.insights-cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.05), transparent);
}

.insights-cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
}

.insights-cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insights-cta-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 30px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.4);
}

.cta-button span {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .animation-container {
        height: 300px;
    }

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

    .cases-grid,
    .expertise-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-card {
        padding: 2rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

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

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

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

    .contact-form {
        padding: 2rem;
    }

    .insights-title {
        font-size: 2.5rem;
    }

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

    .article-image {
        height: 250px;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-content {
        padding: 1.5rem;
    }

    .insights-cta-card {
        padding: 2rem;
    }

    .insights-cta-card h2 {
        font-size: 1.8rem;
    }

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

    .journey-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .journey-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }

    .journey-title {
        font-size: 1.3rem;
    }

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

    .journey-card {
        padding: 2rem;
    }
}
