/* ========================================
   MODERN REDESIGN FOR INTERFACE LABORATORIES
   Featuring clean, professional aesthetic with improved typography
======================================== */

:root {
    /* Modern Color Palette */
    --primary-color: #1e293b;      /* Deep slate blue */
    --secondary-color: #0ea5e9;    /* Bright sky blue */
    --accent-color: #06b6d4;       /* Cyan accent */
    --success-color: #10b981;      /* Emerald green */
    --warning-color: #f59e0b;      /* Amber */
    --danger-color: #ef4444;       /* Red */
    
    /* Neutrals */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* ========================================
   BASE STYLES
======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--accent-color);
}

/* ========================================
   COMPONENTS
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */

header {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 75px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 1.7rem;
    align-items: center;
}

nav ul li a {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 1.14rem;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--secondary-color);
    background: var(--gray-100);
}

nav ul li a.active {
    color: var(--secondary-color);
    background: var(--gray-100);
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--gray-800) 50%, 
        var(--secondary-color) 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.05"/><circle cx="80" cy="20" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/><circle cx="20" cy="80" r="1" fill="white" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, white, var(--gray-200));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    letter-spacing: 0.025em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 0;
    font-weight: 400;
}

/* ========================================
   SECTIONS
======================================== */

section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* ========================================
   CARDS & CONTENT BLOCKS
======================================== */

.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ========================================
   CONTACT FORM STYLES
======================================== */

.contact-section {
    background: white;
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
}

.contact-info h2 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.info-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary-color);
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgb(14 165 233 / 0.1);
}

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

.error-message {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

button[type="submit"] {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    box-shadow: var(--shadow-md);
}

button[type="submit"]:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ========================================
   FOOTER
======================================== */

footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Hamburger menu for mobile */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger-bar {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    nav {
        display: none;
    }
    
    .header-container {
        padding: 0 1rem;
        height: 80px;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
        letter-spacing: 0.025em;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* ========================================
   UTILITY CLASSES
======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ========================================
   ANIMATIONS
======================================== */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* Success/Error message styling */
#form-message {
    border-radius: var(--radius-md);
    font-weight: 500;
}

#form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

#form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ========================================
   TEAM SECTION STYLES
======================================== */

.team-section {
    padding: 4rem 0;
}

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

.team-member {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-member img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--gray-100);
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: var(--secondary-color);
}

/* Specific adjustment for David's image to show more of the photo */
.david-photo-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--gray-100);
    transition: border-color 0.3s ease;
    background-image: url('../images/david.jpg');
    background-size: 80%;
    background-position: center 20%;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
}

.team-member:hover .david-photo-container {
    border-color: var(--secondary-color);
}

/* Keep the original fallback rule for other instances */
.team-member img[src="images/david.jpg"], 
.team-member img.david-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center 20%;
    background-image: url('../images/david.jpg');
    background-size: 70%;
    background-position: center 20%;
    background-repeat: no-repeat;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-member .title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p:not(.title) {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Social links styling for team members */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-50);
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-links svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.social-links a:hover svg {
    transform: scale(1.1);
}

/* Responsive adjustments for team section */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
}

@media (min-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 2rem auto;
    }
}

/* ========================================
   ABOUT PAGE STYLES
======================================== */

.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
}

.about-text {
    line-height: 1.7;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.about-text p {
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.about-text li {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.about-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-text li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 2rem;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

/* Responsive adjustments for about page */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .about-image {
        position: static;
        order: -1;
    }
    
    .about-text h2 {
        font-size: 1.875rem;
        margin-top: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.375rem;
        margin-top: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-text li {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .about-content {
        padding: 0 1rem;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .about-text li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
}

/* ========================================
   SOLUTIONS PAGE STYLES
======================================== */

.solution-section {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.solutions-nav {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 4rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.solutions-nav h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

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

.solutions-nav a {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.solutions-nav a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.solution-item {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.solution-item h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.solution-item p {
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.solution-item ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.solution-item li {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.solution-item li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.solution-item li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.solution-item em {
    color: var(--gray-600);
    font-style: italic;
    font-size: 1rem;
    display: block;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--radius-sm);
}

.solution-item em a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.solution-item em a:hover {
    text-decoration: underline;
}

/* Status badges */
.beta-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    box-shadow: var(--shadow-sm);
}

/* Responsive adjustments for solutions page */
@media (max-width: 968px) {
    .solution-section {
        padding: 2rem 1.5rem;
    }
    
    .solution-item {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .solution-item h2 {
        font-size: 1.75rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .solution-item p {
        font-size: 1rem;
    }
    
    .solution-item li {
        font-size: 1rem;
    }
    
    .solutions-nav div {
        flex-direction: column;
        align-items: center;
    }
    
    .solutions-nav a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .solution-section {
        padding: 1.5rem 1rem;
    }
    
    .solution-item {
        padding: 1.5rem;
    }
    
    .solution-item h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .solution-item p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .solution-item li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
}
