/* Organized Key Features grid */
.features-grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    margin: 20px 0;
}
.feature-item {
    padding: 10px 0 0 0;
    font-size: 1.08em;
    position: relative;
}
.feature-gridline {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    margin: 10px 0 0 0;
    border-radius: 1px;
}
body { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    margin: 0; 
    background: #f6f7fb; 
    color: #222; 
    padding: 0;
    padding-top: 80px;
    width: 100%;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 40px; 
    width: 100%;
    box-sizing: border-box;
}

/* Full-width container for sections */
.full-width { 
    width: 100%; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header styling - sticky header */
header { 
    background: #fff; 
    border-bottom: 1px solid #e5e5e5; 
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    width: 100%;
}

.logo { 
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem; 
    font-weight: bold; 
    color: #0078d4; 
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 24px; 
    margin: 0; 
    padding: 0; 
}

nav a { 
    text-decoration: none; 
    color: #222; 
    font-weight: 500; 
}

/* Main content */
main {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero section - modern white design */
.hero { 
    background: #ffffff; 
    color: #333; 
    padding: 100px 0; 
    min-height: 500px;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text .highlight {
    color: #0078d4;
    position: relative;
}

.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0078d4, #005fa3);
    border-radius: 2px;
}

.hero-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary { 
    background: #0078d4; 
    color: #fff; 
    padding: 16px 32px; 
    border: none; 
    border-radius: 8px; 
    text-decoration: none; 
    font-size: 1.1rem; 
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.2);
}

.btn-primary:hover {
    background: #005fa3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #0078d4;
    padding: 16px 32px;
    border: 2px solid #0078d4;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #0078d4;
    color: #fff;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    background: rgba(0, 120, 212, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(0, 120, 212, 0.1);
}

.sketch-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Services section */
.services {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.sketch-icon {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}
/* Full-width sections */
.features, .testimonials, .contact, .solutions, .careers, .training { 
    padding: 60px 0; 
    width: 100%;
}

.features-grid, .solutions-grid { 
    display: flex; 
    gap: 32px; 
    flex-wrap: wrap; 
    justify-content: space-between;
}

/* Features wrapper with arrows - full width */
.features-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    background: rgba(0, 120, 212, 0.02);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    width: 100%;
}

/* Pause animation on hover */
.features-wrapper:hover .arrow {
    animation-play-state: paused;
}

/* Arrow containers */
.arrow-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100px;
    height: 250px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.arrow-container.left {
    align-items: flex-end;
}

.arrow-container.right {
    align-items: flex-start;
}

/* Arrow styling */
.arrow {
    font-size: 3rem;
    font-weight: bold;
    color: #0078d4;
    text-shadow: 0 2px 8px rgba(0, 120, 212, 0.5);
    opacity: 1;
    display: block;
    line-height: 1;
}

/* Left arrow animation */
.left-arrow {
    animation: moveLeft 4s linear infinite;
}

.left-arrow:nth-child(1) { animation-delay: 0s; }
.left-arrow:nth-child(2) { animation-delay: 1.3s; }
.left-arrow:nth-child(3) { animation-delay: 2.6s; }

/* Right arrow animation */
.right-arrow {
    animation: moveRight 4s linear infinite;
}

.right-arrow:nth-child(1) { animation-delay: 0s; }
.right-arrow:nth-child(2) { animation-delay: 1.3s; }
.right-arrow:nth-child(3) { animation-delay: 2.6s; }

/* Keyframes for left movement */
@keyframes moveLeft {
    0% { 
        transform: translateX(50px); 
        opacity: 0; 
        color: #0078d4;
    }
    25% { 
        transform: translateX(0px); 
        opacity: 1; 
        color: #005fa3;
    }
    75% { 
        transform: translateX(-40px); 
        opacity: 1; 
        color: #0078d4;
    }
    100% { 
        transform: translateX(-80px); 
        opacity: 0; 
        color: #005fa3;
    }
}

/* Keyframes for right movement */
@keyframes moveRight {
    0% { 
        transform: translateX(-50px); 
        opacity: 0; 
        color: #0078d4;
    }
    25% { 
        transform: translateX(0px); 
        opacity: 1; 
        color: #005fa3;
    }
    75% { 
        transform: translateX(40px); 
        opacity: 1; 
        color: #0078d4;
    }
    100% { 
        transform: translateX(80px); 
        opacity: 0; 
        color: #005fa3;
    }
}

/* Features section with improved styling */
.features {
    background: #ffffff;
    padding: 80px 0;
}

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

.feature-card, .solution-card { 
    background: #fff; 
    border-radius: 16px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
    padding: 2.5rem; 
    flex: 1; 
    min-width: 280px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.feature-card:hover, .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0078d4, #005fa3);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3, .solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-card p, .solution-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Testimonials section */
.testimonials {
    background: #f8f9fa;
    padding: 80px 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #0078d4;
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.author-info cite {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
    display: block;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        flex-direction: column;
    }
    
    .features-wrapper {
        flex-direction: column;
    }
    
    .arrow-container {
        width: 100%;
        height: 60px;
        flex-direction: row;
    }
}

footer { 
    background: #222; 
    color: #fff; 
    padding: 32px 0; 
    text-align: center; 
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.footer-links { 
    list-style: none; 
    display: flex; 
    gap: 16px; 
    justify-content: center; 
    padding: 0; 
    margin: 0; 
}

.footer-links a { 
    color: #fff; 
    text-decoration: underline; 
}

form { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
    max-width: 100%; 
    margin: 0 auto; 
}

input, textarea { 
    padding: 12px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
}

blockquote { 
    font-style: italic; 
    background: #f0f4f8; 
    padding: 24px; 
    border-radius: 8px; 
    margin: 24px 0; 
}

cite { 
    display: block; 
    margin-top: 12px; 
    font-weight: bold; 
}

@media (max-width: 800px) {
    .features-grid, .solutions-grid { flex-direction: column; }
    .features-wrapper { flex-direction: column; }
    .arrow-container { width: 100%; height: 60px; flex-direction: row; }
    .container { padding: 0 20px; }
    .header-content { flex-direction: column; gap: 20px; }
    .footer-content { gap: 20px; }
    .footer-links { flex-wrap: wrap; }
}

/* Features wrapper with arrows */
.features-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    background: rgba(0, 120, 212, 0.02);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

/* Pause animation on hover */
.features-wrapper:hover .arrow {
    animation-play-state: paused;
}

/* Arrow containers */
.arrow-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100px;
    height: 250px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.arrow-container.left {
    align-items: flex-end;
}

.arrow-container.right {
    align-items: flex-start;
}

/* Arrow styling */
.arrow {
    font-size: 3rem;
    font-weight: bold;
    color: #0078d4;
    text-shadow: 0 2px 8px rgba(0, 120, 212, 0.5);
    opacity: 1;
    display: block;
    line-height: 1;
}

/* Left arrow animation */
.left-arrow {
    animation: moveLeft 4s linear infinite;
}

.left-arrow:nth-child(1) { animation-delay: 0s; }
.left-arrow:nth-child(2) { animation-delay: 1.3s; }
.left-arrow:nth-child(3) { animation-delay: 2.6s; }

/* Right arrow animation */
.right-arrow {
    animation: moveRight 4s linear infinite;
}

.right-arrow:nth-child(1) { animation-delay: 0s; }
.right-arrow:nth-child(2) { animation-delay: 1.3s; }
.right-arrow:nth-child(3) { animation-delay: 2.6s; }

/* Keyframes for left movement */
@keyframes moveLeft {
    0% { 
        transform: translateX(50px); 
        opacity: 0; 
        color: #0078d4;
    }
    25% { 
        transform: translateX(0px); 
        opacity: 1; 
        color: #005fa3;
    }
    75% { 
        transform: translateX(-40px); 
        opacity: 1; 
        color: #0078d4;
    }
    100% { 
        transform: translateX(-80px); 
        opacity: 0; 
        color: #005fa3;
    }
}

/* Keyframes for right movement */
@keyframes moveRight {
    0% { 
        transform: translateX(-50px); 
        opacity: 0; 
        color: #0078d4;
    }
    25% { 
        transform: translateX(0px); 
        opacity: 1; 
        color: #005fa3;
    }
    75% { 
        transform: translateX(40px); 
        opacity: 1; 
        color: #0078d4;
    }
    100% { 
        transform: translateX(80px); 
        opacity: 0; 
        color: #005fa3;
    }
}

.feature-card, .solution-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); padding: 32px; flex: 1; min-width: 250px; }
/* Testimonials with animations */
blockquote { 
    font-style: italic; 
    background: #f0f4f8; 
    padding: 24px; 
    border-radius: 8px; 
    margin: 24px 0; 
    animation: scaleIn 1s ease-out;
    position: relative;
    overflow: hidden;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #0078d4;
    opacity: 0.3;
    animation: bounce 2s infinite;
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

cite { 
    display: block; 
    margin-top: 12px; 
    font-weight: bold; 
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Footer with slide-up animation */
footer { 
    background: #222; 
    color: #fff; 
    padding: 32px 0; 
    text-align: center; 
    position: relative;
    overflow: hidden;
    animation: slideUp 1s ease-out;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0078d4, #005fa3, #0078d4);
    animation: gradientMove 3s infinite;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

.footer-links { 
    list-style: none; 
    display: flex; 
    gap: 16px; 
    justify-content: center; 
    padding: 0; 
    margin: 16px 0 0 0; 
}

.footer-links li {
    animation: fadeInUp 0.8s ease-out;
}

.footer-links li:nth-child(1) { animation-delay: 0.1s; }
.footer-links li:nth-child(2) { animation-delay: 0.2s; }
.footer-links li:nth-child(3) { animation-delay: 0.3s; }
.footer-links li:nth-child(4) { animation-delay: 0.4s; }

.footer-links a { 
    color: #fff; 
    text-decoration: underline; 
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0078d4;
    transform: translateY(-2px);
}

/* Form animations */
/* Contact page styles */
.contact {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #0078d4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

.contact-form select {
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
    padding: 16px;
    font-size: 1.1rem;
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.contact-info a {
    color: #0078d4;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Alert messages */
.alert {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form animations */
.contact-form input,
.contact-form textarea,
.contact-form select {
    animation: slideInFromRight 0.6s ease-out;
}

.form-group:nth-child(1) input { animation-delay: 0.1s; }
.form-group:nth-child(2) input { animation-delay: 0.2s; }
.form-group:nth-child(3) input { animation-delay: 0.3s; }
.form-group:nth-child(4) select { animation-delay: 0.4s; }
.form-group:nth-child(5) textarea { animation-delay: 0.5s; }

@keyframes slideInFromRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

form { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
    max-width: 100%; 
    margin: 0 auto; 
}

input, textarea { 
    padding: 12px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    animation: slideInFromRight 0.8s ease-out;
    transition: all 0.3s ease;
}

input:nth-child(1) { animation-delay: 0.1s; }
input:nth-child(2) { animation-delay: 0.2s; }
input:nth-child(3) { animation-delay: 0.3s; }
textarea { animation-delay: 0.4s; }

@keyframes slideInFromRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

input:focus, textarea:focus {
    border-color: #0078d4;
    box-shadow: 0 0 10px rgba(0, 120, 212, 0.3);
    transform: scale(1.02);
}

/* Enhanced Solution Page Styles */
.solutions-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 120, 212, 0.8);
    z-index: 2;
}

.solutions-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 40px;
}

.solutions-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.solutions-hero .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.solutions-section {
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 120, 212, 0.15);
    border-color: #0078d4;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0078d4, #005fa3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.solution-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.process-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 80px;
    border-radius: 20px;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
}

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

.process-step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0078d4, #005fa3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .features-grid, .solutions-grid { flex-direction: column; }
    .features-wrapper { flex-direction: column; }
    .arrow-container { width: 100%; height: 60px; flex-direction: row; }
    
    .solutions-hero {
        height: 400px;
        margin-bottom: 60px;
    }
    
    .solutions-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .solutions-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-card {
        padding: 30px;
    }
}

/* Company Profile Page Styles */
.company-hero {
    background: linear-gradient(135deg, #0078d4, #005fa3);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.company-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.company-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #0078d4;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 1rem;
}

.company-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.expertise-areas {
    padding: 80px 0;
    background: white;
}

.expertise-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
}

.expertise-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.expertise-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 120, 212, 0.15);
    border-color: #0078d4;
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0078d4, #005fa3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
}

.expertise-icon svg {
    width: 30px;
    height: 30px;
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.expertise-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission-card, .vision-card {
    background: white;
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.mission-card h2, .vision-card h2 {
    font-size: 2rem;
    color: #0078d4;
    margin-bottom: 25px;
    font-weight: 600;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
}

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

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 120, 212, 0.1);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0078d4;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Company Profile */
@media (max-width: 768px) {
    .company-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-card, .vision-card {
        padding: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Copilot Studio Web Chat Styles */
#copilot-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Segoe UI', Arial, sans-serif;
}

#copilot-chat-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0078d4, #005fa3);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 120, 212, 0.3);
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    font-weight: 500;
}

#copilot-chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 120, 212, 0.4);
    background: linear-gradient(135deg, #106ebe, #004578);
}

#copilot-chat-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

#copilot-chat-widget {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    width: 400px;
    height: 500px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: linear-gradient(135deg, #0078d4, #005fa3);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.close-chat:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-content {
    height: calc(100% - 60px);
    background: #f8f9fa;
}

#copilot-iframe {
    border: none;
    width: 100%;
    height: 100%;
    background: white;
}

/* Responsive design for chat widget */
@media (max-width: 768px) {
    #copilot-chat-container {
        bottom: 20px;
        right: 20px;
    }
    
    #copilot-chat-widget {
        width: calc(100vw - 40px);
        height: 70vh;
        max-width: 350px;
    }
    
    #copilot-chat-button span {
        display: none;
    }
    
    #copilot-chat-button {
        width: 60px;
        height: 60px;
        padding: 15px;
        border-radius: 50%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #copilot-chat-widget {
        width: calc(100vw - 20px);
        height: 80vh;
        bottom: 10px;
        right: 10px;
        position: fixed;
    }
}

/* Header Chat Now Button */
.chat-now-btn {
    background: linear-gradient(135deg, #0078d4, #005fa3) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 15px rgba(0, 120, 212, 0.3) !important;
    border: none !important;
}

.chat-now-btn:hover {
    background: linear-gradient(135deg, #106ebe, #004578) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(0, 120, 212, 0.4) !important;
}

/* Floating Chat Widget */
#floating-chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    font-family: 'Segoe UI', Arial, sans-serif;
}

#chat-toggle-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0078d4, #005fa3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 120, 212, 0.3);
    transition: all 0.3s ease;
    border: none;
}

#chat-toggle-btn:hover {
    background: linear-gradient(135deg, #106ebe, #004578);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 120, 212, 0.4);
}

#floating-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #e1e1e1;
}

.floating-chat-header {
    background: linear-gradient(135deg, #0078d4, #005fa3);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.chat-actions {
    display: flex;
    gap: 10px;
}

.expand-btn, .close-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.expand-btn:hover, .close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.close-btn {
    font-size: 18px;
    font-weight: bold;
}

.floating-chat-content {
    height: calc(100% - 50px);
    position: relative;
}

#floating-chat-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.chat-loading, .chat-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    color: #666;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0078d4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.chat-error a {
    color: #0078d4;
    text-decoration: none;
}

.chat-error a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Design for Floating Chat */
@media (max-width: 768px) {
    #floating-chat-window {
        width: 300px;
        height: 350px;
        bottom: 70px;
    }
    
    #chat-toggle-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    #floating-chat-window {
        width: calc(100vw - 30px);
        height: 300px;
        right: 15px;
        bottom: 70px;
    }
    
    #floating-chat-widget {
        right: 15px;
        bottom: 15px;
    }
}

/* Dedicated Chat Page Styles */
.chat-hero {
    background: linear-gradient(135deg, #0078d4, #005fa3);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.chat-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.chat-interface {
    padding: 60px 0;
    background: #f8f9fa;
}

.chat-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, #0078d4, #005fa3);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-status {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #28a745;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.chat-info {
    font-size: 0.9rem;
    opacity: 0.9;
}

.chat-embed {
    height: 600px;
    position: relative;
}

.chat-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.chat-features {
    margin-top: 40px;
    text-align: center;
}

.chat-features h3 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.feature-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-btn {
    background: white;
    border: 2px solid #e1e5e9;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #333;
}

.feature-btn:hover {
    border-color: #0078d4;
    background: #f0f6ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 120, 212, 0.2);
}

.fallback-content {
    padding: 40px;
    text-align: center;
    color: #666;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0078d4;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #106ebe;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Chat Page */
@media (max-width: 768px) {
    .chat-hero-content h1 {
        font-size: 2rem;
    }
    
    .chat-container {
        margin: 0 20px;
        border-radius: 10px;
    }
    
    .chat-embed {
        height: 500px;
    }
    
    .feature-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
}

/* Team Page Styles */
.team-hero {
    background: linear-gradient(135deg, #0078d4, #005fa3);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.team-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.team-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.intro-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.leadership-team {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 120, 212, 0.1);
    border-color: rgba(0, 120, 212, 0.2);
}

.member-photo {
    margin-bottom: 25px;
}

.photo-placeholder {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.member-title {
    font-size: 1.2rem;
    color: #0078d4;
    font-weight: 600;
    margin-bottom: 20px;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.credential {
    background: linear-gradient(135deg, #0078d4, #005fa3);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.member-bio {
    text-align: left;
    margin-bottom: 25px;
}

.member-bio p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
}

.expertise-areas h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.expertise-areas ul {
    list-style: none;
    padding: 0;
}

.expertise-areas li {
    background: white;
    padding: 8px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    color: #666;
    font-size: 0.95rem;
    border-left: 3px solid #0078d4;
}

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

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0077b5;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 119, 181, 0.3);
}

.linkedin-btn:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 119, 181, 0.4);
    color: white;
    text-decoration: none;
}

.team-approach {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.approach-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.approach-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    background: linear-gradient(135deg, #0078d4, #005fa3);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
}

.approach-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.approach-item p {
    color: #666;
    line-height: 1.6;
}

.team-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0078d4, #005fa3);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: white;
    color: #0078d4;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    text-decoration: none;
    color: #005fa3;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn.secondary:hover {
    background: white;
    color: #0078d4;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design for Team Page */
@media (max-width: 768px) {
    .team-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .team-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-member {
        padding: 30px;
    }
    
    .member-info h3 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 250px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .approach-item {
        padding: 30px;
    }
}