/* General Styles (Keep these or modify as needed) */
body {
    font-family: 'Open Sans', sans-serif; /* More corporate and readable */
    margin: 0;
    line-height: 1.7;
    background-color: #f7f7f7;
    color: #444;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1300px; /* Slightly wider for enterprise focus */
    margin: 0 auto;
    padding: 30px;
}

.section-title {
    font-size: 2.8em;
    color: #222;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Montserrat', sans-serif; /* More impactful for titles */
    font-weight: 700;
}

/* Enterprise Header Styles */
.enterprise-header {
    background-color: #fff;
    padding: 25px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: #1c3a5e; /* Deeper, more professional primary color */
    text-decoration: none;
}

.logo-accent {
    color: #00aaff; /* A brighter accent color */
}

.enterprise-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.enterprise-nav ul li {
    margin-left: 25px;
    position: relative;
}

.enterprise-nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    padding: 12px 18px;
    display: block;
    transition: color 0.3s ease;
}

.enterprise-nav ul li a:hover {
    color: #1c3a5e;
}

.enterprise-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eee;
    border-top: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    display: none;
    z-index: 1;
    border-radius: 0 0 5px 5px;
}

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

.enterprise-nav .dropdown-menu li {
    margin: 0;
}

.enterprise-nav .dropdown-menu li a {
    padding: 12px 25px;
    display: block;
    white-space: nowrap;
    color: #666;
}

.enterprise-nav .dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: #1c3a5e;
}

.enterprise-nav .cta a {
    background-color: #00aaff;
    color: #fff;
    border-radius: 6px;
    padding: 14px 22px;
    font-weight: 600;
}

.enterprise-nav .cta a:hover {
    background-color: #0088cc;
}

/* Enterprise Hero Section */
.enterprise-hero {
    background-color: #f9f9f9;
    padding: 100px 0;
}

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

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-title {
    font-size: 3.5em;
    color: #222;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 40px;
}

.hero-buttons a {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    transition: background-color 0.3s ease;
}

.hero-buttons .primary {
    background-color: #00aaff;
    color: #fff;
}

.hero-buttons .primary:hover {
    background-color: #0088cc;
}

.hero-buttons .secondary {
    background-color: #e0f2ff;
    color: #1c3a5e;
    border: 1px solid #bbe1fa;
}

.hero-buttons .secondary:hover {
    background-color: #cceeff;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
}

/* Value Proposition Section */
.value-proposition {
    padding: 80px 0;
    background-color: #fff;
}

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

.value-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    background-color: #f9f9f9;
}

.value-item img {
    max-width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.6em;
    color: #1c3a5e;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.value-item p {
    color: #666;
}

/* Enterprise Call to Action */
.enterprise-cta {
    background-color: #1c3a5e;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-size: 3em;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #eee;
}

.enterprise-cta .button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    background-color: #00aaff;
    color: #fff;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.enterprise-cta .button:hover {
    background-color: #0088cc;
}

/* Enterprise Footer */
.enterprise-footer {
    background-color: #222;
    color: #eee;
    padding: 40px 0;
}

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

.footer-info .logo a {
    color: #fff;
}

.footer-info .footer-text {
    margin-top: 10px;
    font-size: 0.9em;
}

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

.footer-nav ul li {
    margin-left: 20px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s ease;
}

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

.social-links a {
    display: inline-block;
    margin-left: 15px;
}

.social-links img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links img:hover {
    opacity: 1;
}

.enterprise-footer .copyright {
    font-size: 0.8em;
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

/* Responsive Design (Adjust as needed) */
@media (max-width: 992px) {
    .enterprise-hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image {
        flex: 1;
        max-width: 80%;
    }

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

    .enterprise-footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-nav ul {
        margin-top: 20px;
    }

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

    .social-links {
        margin-top: 20px;
    }
}

@media (