* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
}

h1,
h2,

.navbar-brand,
.nav-link,
.btn {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar {
    background-color: white;
    padding: 0.75rem 0;
    border-bottom: none;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 2rem;
}

.nav-link {
    color: #6c757d;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #2c3e50;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #2c3e50;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-contact {
    background-color: #00d4aa;
    color: white;
}

.btn-contact:hover {
    background-color: #00b894;
}

.btn-teal {
    background-color: #00d4aa;
    color: white;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.btn-teal:hover {
    background-color: #00b894;
    color: white;
}

.hero-section {
    padding: 1rem;
}

.hero-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: white;
    margin-left: 15%;
}

.hero-text {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.hero-logo {
    height: 2rem;
    width: auto;
    vertical-align: super;
    position: relative;
    left: -0.2rem;
}

.content-section {
    padding: 2rem 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.heading-two-line {
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.1;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.text-muted {
    color: #101011;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.content-frame {
    background-color: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.content-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.btn-teal .arrow {
    font-size: 24px;
    vertical-align: middle;
}

/* Services Page Styles */
.services-section {
    background-color: #1e3a5f;
    min-height: 100vh;
    padding: 4rem 1rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    white-space: nowrap;
}

.services-description {
    color: #f0f0f0;
    font-weight: 200;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-image {
    width: 90%;
    height: 280px;
    object-fit: cover;
    border-radius: 5px;
    margin: 1.5rem auto 1.5rem;
    display: block;
}

.service-button {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

.btn-product {
    background-color: #1e3a5f;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product:hover {
    background-color: #2c4a6b;
    transform: translateY(-2px);
}

.white-border {
    height: 40px;
    background-color: white;
    width: 100%;
}

@media (max-width: 768px) {
    .nav-center {
        display: none;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        margin-left: 5%;
    }

    .hero-text {
        font-size: 1.4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-description {
        font-size: 1rem;
    }
}