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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 72px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav > ul > li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s, background-color 0.3s;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    display: block;
}

nav a:hover,
nav a.active {
    color: #1e3a5f;
    background-color: #f0f0f0;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.8rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem 0;
    z-index: 1000;
    margin-top: 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.8rem 1.2rem;
    color: #333;
    white-space: nowrap;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
    color: #1e3a5f;
}

.login-btn {
    background: #1e3a5f;
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.4);
}

/* Hero Section */
.hero {
    background: #1e3a5f;
    color: white;
    padding: 64px 0;
    text-align: center;
    position: relative;
}

.hero-with-image {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(30, 58, 95, 0.95) 100%),
                url('/images/OIG2.jpg') center/cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

.hero p,
.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
}

/* Visual Showcase */
.visual-showcase {
    padding: 60px 0;
    background-color: #fff;
}

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

.showcase-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.showcase-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

/* Page Hero */
.page-hero {
    background: #1e3a5f;
    color: white;
    padding: 64px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section.bg-light {
    background-color: #f8f9fa;
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.content-section h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #555;
}

/* Lead Text */
.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
}

/* Content Boxes */
.content-box {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.content-section.bg-light .content-box {
    background: white;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Benefits Grid - Modern Pillar Design */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    border-top: 5px solid #667eea;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px 15px 0 0;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    background: linear-gradient(to bottom, #ffffff 0%, #f0f4ff 100%);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1e3a5f;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    text-align: left;
}

/* Responsive design for pillars */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-card {
        min-height: auto;
    }
}

/* Process Flow Design */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.process-step {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.process-icon {
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-step h3 {
    font-size: 1.1rem;
    color: #1e3a5f;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.process-arrow {
    font-size: 2.5rem;
    color: #667eea;
    font-weight: bold;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .process-flow {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .process-step {
        max-width: 100%;
        width: 100%;
    }
}

/* Scope of Understanding Section */
.scope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.scope-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #f0f0f0;
}

.scope-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.scope-icon {
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.scope-card h3 {
    font-size: 1.2rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.scope-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.technology-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    color: white;
}

.technology-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.technology-icon svg path {
    stroke: white;
}

.technology-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: white;
}

.technology-content p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .scope-grid {
        grid-template-columns: 1fr;
    }

    .technology-section {
        flex-direction: column;
        text-align: center;
    }
}

/* Tabs Design */
.tabs-container {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 3px solid #e0e0e0;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    flex: 1;
    min-width: 200px;
    padding: 1.2rem 2rem;
    background: white;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: -3px;
}

.tab-btn:hover {
    background: #f8f9fa;
    color: #667eea;
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

@media (max-width: 768px) {
    .tabs-nav {
        flex-direction: column;
        border-bottom: none;
    }

    .tab-btn {
        border-bottom: 2px solid #e0e0e0;
        border-left: 3px solid transparent;
        margin-bottom: 0;
        margin-left: -3px;
        text-align: left;
    }

    .tab-btn.active {
        border-bottom-color: #e0e0e0;
        border-left-color: #667eea;
    }
}

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

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

.expertise-card h3 {
    margin-bottom: 1.5rem;
}

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

.expertise-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Why Work Section */
.why-work {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-work h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Core Expertise */
.core-expertise {
    padding: 80px 0;
}

.core-expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Convergence Section */
.convergence-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.convergence-image {
    text-align: center;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.convergence-text {
    flex: 1;
}

/* eC&Q Intro Section */
.ecq-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ecq-image {
    text-align: center;
}

.ecq-text {
    flex: 1;
}

/* About Page Styles */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.about-intro-image {
    text-align: center;
}

.profile-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-intro-text {
    flex: 1;
}

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

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

.about-card h3 {
    margin-bottom: 1rem;
}

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

.about-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

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

.expertise-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.expertise-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.expertise-item p {
    font-size: 0.95rem;
    color: #666;
}

.expertise-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-detail-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.summary-box {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.summary-box h2 {
    margin-bottom: 1.5rem;
}

/* Business Case Page Styles */
.framework-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 1.5rem;
    top: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-card h3 {
    margin-bottom: 1rem;
}

.step-card ul {
    list-style: none;
    padding: 0;
}

.step-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.step-card li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #667eea;
}

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

.financial-sections h4 {
    color: #667eea;
    margin-bottom: 0.8rem;
}

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

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

.pitfalls h3 {
    color: #dc3545;
    margin-bottom: 1.5rem;
}

.values h3 {
    color: #28a745;
    margin-bottom: 1.5rem;
}

.pitfall-list,
.value-list {
    list-style: none;
    padding: 0;
}

.pitfall-list li,
.value-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.cross {
    position: absolute;
    left: 0;
    color: #dc3545;
    font-size: 1.2rem;
}

.check {
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 1.2rem;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.table-container {
    overflow-x: auto;
    margin-top: 2rem;
}

.roi-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.roi-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.roi-table th,
.roi-table td {
    padding: 1rem;
    text-align: left;
}

.roi-table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.roi-table tbody tr:hover {
    background-color: #f8f9fa;
}

.table-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

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

.getting-started-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.getting-started-card .step-number {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 auto 1rem;
}

.value-proposition {
    margin-top: 3rem;
    text-align: center;
}

/* eC&Q Page Styles */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.equipment-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.equipment-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.qms-section {
    margin-top: 2rem;
}

.qms-section h3 {
    margin-bottom: 2rem;
}

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

.qms-feature {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.qms-feature h4 {
    color: #667eea;
    margin-bottom: 0.8rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-icon {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.approach-step {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.approach-step .step-number {
    position: relative;
    left: 0;
    top: 0;
}

.step-content h3 {
    margin-bottom: 0.8rem;
}

/* Contact Page Styles */
.contact-header-image {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.contact-banner {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

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

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
}

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

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.expectation-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.expectation-card .step-number {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 auto 1rem;
}

.expectation-card h3 {
    margin-bottom: 1rem;
}

/* Legal/Terms Page Styles */
.legal-content {
    background-color: #f8f9fa;
}

.legal-box {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.legal-box h2 {
    color: #667eea;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.legal-box h3 {
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-box h4 {
    color: #666;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-box ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.legal-box li {
    margin-bottom: 0.5rem;
}

.legal-box p {
    margin-bottom: 1rem;
}

.legal-box a {
    color: #667eea;
    text-decoration: none;
}

.legal-box a:hover {
    text-decoration: underline;
}

.acceptance-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.acceptance-box h2 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.legal-footer {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.legal-footer p {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Login Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 280px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    position: relative;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #667eea;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
}

.close:hover,
.close:focus {
    color: #000;
}

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

.modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

.modal .form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.modal .form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.modal .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

.error-message {
    color: #dc3545;
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section a {
    color: #8ab4f8;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

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

    nav ul {
        gap: 0.8rem;
        justify-content: center;
    }

    nav a {
        font-size: 0.85rem;
    }

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

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

    .content-section h2 {
        font-size: 1.8rem;
    }

    .step-card {
        padding-left: 2rem;
        padding-top: 4rem;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
        top: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .financial-sections {
        grid-template-columns: 1fr;
    }

    .table-container {
        overflow-x: scroll;
    }

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

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

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

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 60px;
    }

    nav ul {
        gap: 0.5rem;
    }

    nav a {
        font-size: 0.75rem;
    }

    .hero,
    .page-hero,
    .cta {
        padding: 48px 0;
    }

    .content-section {
        padding: 40px 0;
    }
}