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

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

/* Header & Navigation */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #003366; /* Deep Navy */
    letter-spacing: -0.5px;
}

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

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff; /* Electric Blue */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(0, 30, 60, 0.9) 100%);
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background-color: #007bff; /* Electric Blue */
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.cta-button.primary:hover {
    background-color: #0056b3;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: #007bff; /* Electric Blue */
    border: 2px solid #007bff;
}

.cta-button.secondary:hover {
    background-color: #007bff;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Trust Bar */
.trust-bar {
    background-color: #ffffff;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.03);
}

.trust-bar p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.trust-logos span {
    display: inline-block;
    margin: 0 20px;
    font-weight: 500;
    color: #003366;
    font-size: 1.1em;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.services-overview h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #003366;
}

.services-overview p {
    font-size: 1.2em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 0;
}

/* Why Forge Core */
.why-forge-core {
    padding: 80px 0;
    background-color: #f4f7f9;
    text-align: center;
}

.why-forge-core h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #003366;
}

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

.differentiator-item {
    text-align: left;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.differentiator-item h3 {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
}

.differentiator-item p {
    font-size: 0.95em;
    color: #555;
}

/* Process */
.process {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.process h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #003366;
}

.process p {
    font-size: 1.2em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

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

.process-step {
    text-align: left;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    position: relative;
}

.process-step span {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
}

.process-step h3 {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    padding-top: 15px;
}

.process-step p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 0;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.1) 0%, rgba(0, 30, 60, 0.1) 100%);
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #003366;
}

.final-cta p {
    font-size: 1.3em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* Page Specific Headers */
.page-header {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Detail */
.services-detail {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-block {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.service-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-block h2 {
    font-size: 2.4em;
    color: #003366;
    margin-bottom: 20px;
}

.service-block h3 {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 15px;
}

.service-block p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.service-block ul {
    list-style: disc;
    margin-left: 25px;
    padding: 0;
}

.service-block ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #333;
}

/* About Content */
.about-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.company-story, .our-values {
    margin-bottom: 40px;
}

.about-content h2 {
    font-size: 2.4em;
    color: #003366;
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 1.6em;
    color: #0056b3;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content ul li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
    padding-left: 20px;
    position: relative;
}

.about-content ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 1.2em;
}

.about-content ul li strong {
    color: #003366;
}

/* Contact Form */
.contact-form-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-form-section .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.4em;
    color: #003366;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 15px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

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

.contact-form h3 {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: auto;
    padding: 15px 40px;
    font-size: 1.1em;
}

/* Footer */
footer {
    background-color: #003366;
    color: #ffffff;
    padding: 50px 0;
    font-size: 0.95em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-size: 2em;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-nav h3,
.footer-contact h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.footer-nav ul,
.footer-contact p {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #ffffff;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact p:last-child {
    margin-top: 30px;
    font-size: 0.9em;
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #ffffff;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px 0;
        display: none; /* Hidden by default, controlled by JS */
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.8em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .services-overview h2, .why-forge-core h2, .process h2, .page-header h1, .service-block h2, .about-content h2, .contact-form-section .contact-info h2, .contact-form h3 {
        font-size: 2.2em;
    }
    .contact-form-section .container {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav, .footer-contact {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1em;
    }
    .cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .services-overview, .why-forge-core, .process, .services-detail, .about-content, .contact-form-section {
        padding: 50px 0;
    }
    .service-cards, .differentiators, .process-steps {
        grid-template-columns: 1fr;
    }
    .trust-logos span {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 0.95em;
    }
    .cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
    .services-overview h2, .why-forge-core h2, .process h2, .page-header h1, .service-block h2, .about-content h2, .contact-form-section .contact-info h2, .contact-form h3 {
        font-size: 1.8em;
    }
    .service-card, .differentiator-item, .process-step {
        padding: 20px;
    }
}