:root {
    --primary: #031B48;
    --secondary: #718AF4;
    --accent: #F1F1E6;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --card-bg: rgba(255, 255, 255, 0.95);
    --overlay-bg: rgba(3, 27, 72, 0.95);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header and Navigation */
header {
    background-color: var(--primary);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
}

/* Home page specific header */
.home-header {
    min-height: 100vh;
}

nav {
    padding: 1rem 0;
    background-color: rgba(3, 27, 72, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 100px;
    width: auto;
    display: block;
    max-width: 100%;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-split {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    gap: 2rem;
}

.hero-content {
    flex: 3;
    text-align: left;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-image {
    flex: 1;
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
}

.collaboration-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.hero-image:hover .collaboration-image {
    transform: scale(1.02);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #b3b3b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* Buttons */
.primary-button, .cta-button, .button, .secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-button, .button {
    background-color: var(--secondary);
    color: var(--text-light);
}

.primary-button:hover, .button:hover {
    transform: translateY(-2px);
    background-color: var(--accent);
    color: var(--text-dark);
}

.secondary-button {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.secondary-button:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.cta-button {
    background-color: var(--accent);
    color: var(--text-dark) !important;
}

.cta-button:hover {
    background-color: var(--secondary);
    color: var(--text-light) !important;
    transform: translateY(-2px);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Sections */
.section-light, .section-dark {
    padding: 5rem 2rem;
}

.section-dark {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.section-dark .container {
    position: relative;
    z-index: 2;
}

.section-dark h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.section-dark p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.section-dark .primary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
}

.section-dark .primary-button:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.section-dark .secondary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--text-light);
}

.section-dark .secondary-button:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Grid Layouts */
.value-grid, .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card, .stat-card {
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.value-card {
    background-color: var(--card-bg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    border: none;
    position: relative;
    border-radius: 15px;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(113, 138, 244, 0.2);
}

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

.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.value-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.value-card h3 {
    color: var(--primary);
    margin: 1.5rem 1.5rem 0.75rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover h3::after {
    transform: scaleX(1);
}

.value-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.value-card:hover p {
    opacity: 1;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    background-color: var(--card-bg);
    border: 1px solid var(--secondary);
    transition: transform 0.3s ease;
    padding: 2rem;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.stat-card p {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 3rem 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-logo {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .logo, .footer-logo {
        height: 70px;
    }
    
    .hero {
        height: auto;
        padding: 6rem 1rem 3rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image {
        height: 250px;
    }
}

/* Add these new styles to your existing styles.css file */

.page-content {
    padding-top: 80px; /* Account for fixed navigation */
}

.hero-small {
    display: none;
}

.content-section {
    padding: 4rem 2rem;
}

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

.solution-card, .benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefit-card ul {
    list-style-type: none;
    padding: 0;
    margin-top: 1rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.industry-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.industry-list li {
    background-color: var(--accent);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    color: var(--primary);
    font-weight: 500;
}

/* Form button styles */
.contact-form button {
    width: 100%;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

/* Legal content styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: left;
}

.legal-content * {
    text-align: left !important;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    text-align: left;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    text-align: left;
}

.brand-position {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.position-statement {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
}

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

.differentiator-card {
    background-color: var(--accent);
    padding: 1.5rem;
    border-radius: 10px;
    color: var(--primary);
}

.differentiator-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.solutions-content {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.solution-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

/* Add these styles to match existing site design */

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
    color: var(--primary);
}

.section-dark {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.section-light {
    background-color: var(--accent);
    padding: 4rem 2rem;
    margin: 2rem 0;
}

.section-dark h2, .section-light h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Add these styles to fix the text visibility */

.dark-section-card {
    background-color: white;
    color: var(--primary) !important;
}

.dark-section-card h3 {
    color: var(--primary) !important;
}

.dark-section-card p {
    color: var(--text-dark) !important;
}

/* Modern Image Styles */
.img-container {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

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

.modern-image:hover {
    transform: scale(1.05);
}

/* Image Loading Optimization */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Modern Grid Layout */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.image-grid-item {
    position: relative;
    aspect-ratio: 16/13;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

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

.image-grid-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--overlay-bg), transparent);
    padding: 2rem;
    color: var(--text-light);
    transform: translateY(0);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 50%;
}

.image-grid-item:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--overlay-bg);
    padding: 6rem 2rem 2rem;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    height: 100vh;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu .cta-button {
    margin-top: 1rem;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* Update Responsive Design */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        flex: none;
        width: 100%;
        padding: 2rem;
        text-align: center;
    }

    .hero-image {
        flex: none;
        width: 100%;
        height: 300px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 6rem 1rem 3rem;
    }

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

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

    .hero-image {
        height: 250px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    body.menu-open {
        overflow: hidden;
    }

    .image-grid-item {
        aspect-ratio: 16/15;  /* Makes it about 40px taller on mobile */
    }
}

/* Page Title */
.page-title {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 4rem 0 3rem;
    margin-top: 70px;
    text-align: center;
}

.page-title h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-title p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Solutions Page Styles */
.solutions-title {
    background-image: linear-gradient(135deg, rgba(3, 27, 72, 0.92), rgba(113, 138, 244, 0.85)),
                     url('images/solutions-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.solutions-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.1;
}

.solutions-content {
    padding: 4rem 0;
}

.solution-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.solution-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    z-index: 1;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(113, 138, 244, 0.2);
}

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

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

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,1) 100%);
}

.solution-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    line-height: 1.3;
}

.solution-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.solution-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.solution-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.learn-more {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    padding-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: var(--primary);
}

.learn-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-light);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.cta-section .primary-button {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
}

.cta-section .primary-button:hover {
    background-color: var(--text-light);
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .solutions-title {
        padding: 4rem 1rem 2rem;
    }

    .solutions-title h1 {
        font-size: 2rem;
    }

    .solutions-title p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .solution-image {
        height: 200px;
    }

    .solution-content {
        padding: 1.5rem;
    }

    .solution-content h3 {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 4rem 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 6rem 0 3rem;
    position: relative;
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.1;
}

.page-header h1,
.page-header p {
    text-align: left;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Sections */
.section-light {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-dark {
    padding: 5rem 0;
    background-color: var(--primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.section-dark .container {
    position: relative;
    z-index: 2;
}

.section-dark h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.section-dark p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.section-intro {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Cards */
.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-content {
    padding: 2rem;
}

.card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-buttons a {
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.section-dark .primary-button {
    background-color: var(--accent);
    color: var(--primary);
    border: none;
}

.section-dark .primary-button:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.section-dark .secondary-button {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.section-dark .secondary-button:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 1rem 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-light,
    .section-dark {
        padding: 3rem 1rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 20px 20px 0 0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e5ee;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(113, 138, 244, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a8b9;
}

.contact-form .primary-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(113, 138, 244, 0.2);
}

.contact-form .primary-button:active {
    transform: translateY(0);
}

/* Form Validation Styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ff6b6b;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #51cf66;
}

/* Contact Page Layout */
.contact-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .contact-form {
        margin: 2rem auto;
        padding: 1.5rem;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
    }
}

/* Legal Pages Styles */
.section-light .container h1,
.section-light .container h2,
.section-light .container h3,
.section-light .container p,
.section-light .container ul {
    text-align: left !important;
}

.page-header .container h1,
.page-header .container p {
    text-align: left !important;
    margin-left: 0;
}

/* Value Proposition Section */
#value-prop {
    position: relative;
    overflow: hidden;
}

#value-prop h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: block;
    width: 100%;
}

#value-prop h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
}

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

.value-card {
    background-color: var(--card-bg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    border: none;
    position: relative;
    border-radius: 15px;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(113, 138, 244, 0.2);
}

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

.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.value-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.value-card h3 {
    color: var(--primary);
    margin: 1.5rem 1.5rem 0.75rem;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover h3::after {
    transform: scaleX(1);
}

.value-card p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.value-card:hover p {
    opacity: 1;
}

@media (max-width: 768px) {
    #value-prop h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .value-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .value-card {
        margin: 0 1rem;
    }
} 