        /* ============================================
           WEB DEVELOPMENT SPECIFIC STYLES
           (Perfectly matches existing services.css)
        ============================================ */
        
        /* Tech Stack Section */
        .tech-stack-section {
            padding: 120px 5%;
            background: transparent;
        }

        .tech-stack-grid {
            max-width: 1400px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .tech-category {
            padding: 3rem 2.5rem;
            background: #ffffff;
            border: 1px solid rgba(28, 55, 101, 0.15);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .tech-category:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(91, 141, 238, 0.2);
        }

        /* Unique gradient borders for each category */
        .tech-category:nth-child(1):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #667eea, #764ba2, #ec4899) border-box;
        }

        .tech-category:nth-child(2):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #f093fb, #f5576c, #fbbf24) border-box;
        }

        .tech-category:nth-child(3):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #4facfe, #00f2fe, #8b5cf6) border-box;
        }

        .tech-category:nth-child(4):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #10b981, #34d399, #6ee7b7) border-box;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .category-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }

        .tech-category:nth-child(1) .category-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .tech-category:nth-child(2) .category-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .tech-category:nth-child(3) .category-icon {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .tech-category:nth-child(4) .category-icon {
            background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
        }

        .tech-category h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-text);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tech-category:hover h3 {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tech-category p {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: var(--gray-text);
            margin-bottom: 1.5rem;
        }

        .tech-keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .tech-keyword {
            background: rgba(28, 55, 101, 0.05);
            color: var(--primary-blue);
            padding: 0.375rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8125rem;
            font-weight: 500;
        }

        .tech-features {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .tech-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            font-size: 1rem;
            color: var(--dark-text);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .tech-features li:last-child {
            border-bottom: none;
        }

        .tech-features li i {
            color: var(--primary-green);
            font-size: 0.875rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        /* Development Process Section */
        .dev-process-section {
            padding: 120px 5%;
            background: transparent;
        }

        .process-phases {
            max-width: 1400px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .process-card {
            padding: 3rem 2.5rem;
            background: #ffffff;
            border: 1px solid rgba(28, 55, 101, 0.15);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .process-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px rgba(91, 141, 238, 0.2);
        }

        /* Unique gradient borders for each phase */
        .process-card:nth-child(1):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #667eea, #764ba2, #ec4899) border-box;
        }

        .process-card:nth-child(2):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #f093fb, #f5576c, #fbbf24) border-box;
        }

        .process-card:nth-child(3):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #4facfe, #00f2fe, #8b5cf6) border-box;
        }

        .process-card:nth-child(4):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #10b981, #34d399, #6ee7b7) border-box;
        }

        .phase-number {
            font-size: 4.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .process-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 1rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .process-card:hover h3 {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .process-keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .process-keyword {
            background: rgba(28, 55, 101, 0.05);
            color: var(--primary-blue);
            padding: 0.375rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8125rem;
            font-weight: 500;
        }

        .process-features {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .process-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            font-size: 1rem;
            color: var(--dark-text);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .process-features li:last-child {
            border-bottom: none;
        }

        .process-features li i {
            color: var(--primary-green);
            font-size: 0.875rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        /* Specialized Services Section */
        .specialized-section {
            padding: 120px 5%;
            background: transparent;
        }

        .specialized-grid {
            max-width: 1400px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .specialized-card {
            text-align: center;
            padding: 3rem 2.5rem;
            background: #ffffff;
            border: 1px solid rgba(28, 55, 101, 0.15);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .specialized-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(91, 141, 238, 0.2);
        }

        .specialized-card:nth-child(1):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #667eea, #764ba2, #ec4899) border-box;
        }

        .specialized-card:nth-child(2):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #f093fb, #f5576c, #fbbf24) border-box;
        }

        .specialized-card:nth-child(3):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #4facfe, #00f2fe, #8b5cf6) border-box;
        }

        .specialized-card:nth-child(4):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #10b981, #34d399, #6ee7b7) border-box;
        }

        .specialized-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .specialized-card:hover .specialized-icon {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
        }

        .specialized-card:nth-child(1) .specialized-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .specialized-card:nth-child(2) .specialized-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .specialized-card:nth-child(3) .specialized-icon {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .specialized-card:nth-child(4) .specialized-icon {
            background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
        }

        .specialized-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-text);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .specialized-card:hover h3 {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .specialized-keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            justify-content: center;
        }

        .specialized-keyword {
            background: rgba(28, 55, 101, 0.05);
            color: var(--primary-blue);
            padding: 0.375rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8125rem;
            font-weight: 500;
        }

        .specialized-card p {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: var(--gray-text);
        }

        /* Development Standards Section */
        .standards-section {
            padding: 120px 5%;
            background: transparent;
        }

        .standards-grid {
            max-width: 1400px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .standard-card {
            text-align: center;
            padding: 3rem 2.5rem;
            background: #ffffff;
            border: 1px solid rgba(28, 55, 101, 0.15);
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .standard-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(91, 141, 238, 0.2);
        }

        .standard-card:nth-child(1):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #667eea, #764ba2, #ec4899) border-box;
        }

        .standard-card:nth-child(2):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #f093fb, #f5576c, #fbbf24) border-box;
        }

        .standard-card:nth-child(3):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #4facfe, #00f2fe, #8b5cf6) border-box;
        }

        .standard-card:nth-child(4):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #10b981, #34d399, #6ee7b7) border-box;
        }

        .standard-card:nth-child(5):hover {
            border: 1px solid transparent;
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #f97316, #fb923c, #fdba74) border-box;
        }

        .standard-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .standard-card:hover .standard-icon {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
        }

        .standard-card:nth-child(1) .standard-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .standard-card:nth-child(2) .standard-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .standard-card:nth-child(3) .standard-icon {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .standard-card:nth-child(4) .standard-icon {
            background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
        }

        .standard-card:nth-child(5) .standard-icon {
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
        }

        .standard-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-text);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .standard-card:hover h3 {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .standard-card p {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: var(--gray-text);
        }

        /* Case Study Section */
        .case-study-section {
            padding: 120px 5%;
            background: transparent;
        }

        .case-study-container {
            max-width: 1400px;
            margin: 60px auto 0;
            background: linear-gradient(135deg, rgba(28, 55, 101, 0.03), rgba(72, 145, 86, 0.03));
            border-radius: 24px;
            padding: 4rem;
            border: 1px solid rgba(28, 55, 101, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        .case-study-header {
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .case-study-client {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .client-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .client-name {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--dark-text);
        }

        .case-study-challenge,
        .case-study-solution {
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .case-study-challenge h3,
        .case-study-solution h3,
        .case-study-results h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 1rem;
        }

        .case-study-challenge p,
        .case-study-solution p {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--gray-text);
            max-width: 800px;
        }

        .solution-features {
            list-style: none;
            margin: 1.5rem 0 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .solution-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem;
            background: rgba(28, 55, 101, 0.02);
            border-radius: 12px;
            font-size: 1rem;
            color: var(--dark-text);
        }

        .solution-features li i {
            color: var(--primary-green);
            font-size: 0.875rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .result-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 16px;
            border: 1px solid rgba(28, 55, 101, 0.1);
            transition: all 0.3s ease;
        }

        .result-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(28, 55, 101, 0.1);
        }

        .result-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .result-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-text);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .technical-achievements {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

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

        .achievement-item {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 16px;
            border: 1px solid rgba(28, 55, 101, 0.1);
        }

        .achievement-number {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .achievement-label {
            font-size: 0.875rem;
            color: var(--gray-text);
        }

        .case-study-cta {
            text-align: center;
            margin-top: 4rem;
        }

        /* Dark theme support */
        body.dark-theme .tech-category,
        body.dark-theme .process-card,
        body.dark-theme .specialized-card,
        body.dark-theme .standard-card,
        body.dark-theme .result-item,
        body.dark-theme .achievement-item {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-theme .tech-category:nth-child(1):hover,
        body.dark-theme .process-card:nth-child(1):hover,
        body.dark-theme .specialized-card:nth-child(1):hover,
        body.dark-theme .standard-card:nth-child(1):hover {
            border: 1px solid transparent;
            background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
                        linear-gradient(135deg, #667eea, #764ba2, #ec4899) border-box;
        }

        body.dark-theme .tech-category:nth-child(2):hover,
        body.dark-theme .process-card:nth-child(2):hover,
        body.dark-theme .specialized-card:nth-child(2):hover,
        body.dark-theme .standard-card:nth-child(2):hover {
            border: 1px solid transparent;
            background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
                        linear-gradient(135deg, #f093fb, #f5576c, #fbbf24) border-box;
        }

        body.dark-theme .tech-category:nth-child(3):hover,
        body.dark-theme .process-card:nth-child(3):hover,
        body.dark-theme .specialized-card:nth-child(3):hover,
        body.dark-theme .standard-card:nth-child(3):hover {
            border: 1px solid transparent;
            background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
                        linear-gradient(135deg, #4facfe, #00f2fe, #8b5cf6) border-box;
        }

        body.dark-theme .tech-category:nth-child(4):hover,
        body.dark-theme .process-card:nth-child(4):hover,
        body.dark-theme .specialized-card:nth-child(4):hover,
        body.dark-theme .standard-card:nth-child(4):hover {
            border: 1px solid transparent;
            background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
                        linear-gradient(135deg, #10b981, #34d399, #6ee7b7) border-box;
        }

        body.dark-theme .standard-card:nth-child(5):hover {
            border: 1px solid transparent;
            background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
                        linear-gradient(135deg, #f97316, #fb923c, #fdba74) border-box;
        }

        body.dark-theme .tech-category h3,
        body.dark-theme .process-card h3,
        body.dark-theme .specialized-card h3,
        body.dark-theme .standard-card h3,
        body.dark-theme .case-study-challenge h3,
        body.dark-theme .case-study-solution h3,
        body.dark-theme .case-study-results h3 {
            color: var(--light-text);
        }

        body.dark-theme .tech-category p,
        body.dark-theme .process-card p,
        body.dark-theme .specialized-card p,
        body.dark-theme .standard-card p,
        body.dark-theme .tech-features li,
        body.dark-theme .process-features li,
        body.dark-theme .case-study-challenge p,
        body.dark-theme .case-study-solution p {
            color: var(--dark-text-light);
        }

        body.dark-theme .case-study-container {
            background: linear-gradient(135deg, rgba(28, 55, 101, 0.1), rgba(72, 145, 86, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        body.dark-theme .case-study-header,
        body.dark-theme .case-study-challenge,
        body.dark-theme .case-study-solution,
        body.dark-theme .technical-achievements {
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .tech-keyword,
        body.dark-theme .process-keyword,
        body.dark-theme .specialized-keyword {
            background: rgba(255, 255, 255, 0.05);
            color: var(--light-text);
        }

        body.dark-theme .tech-features li,
        body.dark-theme .process-features li,
        body.dark-theme .solution-features li {
            border-bottom-color: rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.02);
        }

        body.dark-theme .result-label,
        body.dark-theme .achievement-label {
            color: var(--dark-text-light);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .tech-stack-grid,
            .process-phases,
            .specialized-grid,
            .standards-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2rem;
            }
            
            .case-study-container {
                padding: 3rem;
            }
            
            .results-grid,
            .achievements-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .tech-stack-section,
            .dev-process-section,
            .specialized-section,
            .standards-section,
            .case-study-section {
                padding: 80px 5%;
            }
            
            .tech-category,
            .process-card,
            .specialized-card,
            .standard-card {
                padding: 2.5rem 2rem;
            }
            
            .phase-number {
                font-size: 3.5rem;
            }
            
            .case-study-container {
                padding: 2rem;
            }
            
            .results-grid,
            .achievements-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .result-item,
            .achievement-item {
                padding: 1.5rem;
            }
            
            .result-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .tech-stack-grid,
            .process-phases,
            .specialized-grid,
            .standards-grid {
                grid-template-columns: 1fr;
            }
            
            .tech-category,
            .process-card,
            .specialized-card,
            .standard-card {
                padding: 2rem 1.5rem;
            }
            
            .phase-number {
                font-size: 3rem;
            }
            
            .category-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
        }
