/* CSS Reset specifically targeting WordPress themes */
.ge-site-wrapper {
    display: block;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    background-color: #ffffff !important;
    color: #1e293b !important;
    line-height: 1.5 !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

.ge-site-wrapper * {
    box-sizing: border-box !important;
}

.ge-site-wrapper p {
    margin: 0 !important;
    padding: 0 !important;
}

.ge-site-wrapper h1, 
.ge-site-wrapper h2, 
.ge-site-wrapper h3, 
.ge-site-wrapper h4, 
.ge-site-wrapper h5, 
.ge-site-wrapper h6 {
    font-family: 'Montserrat', system-ui, sans-serif !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

.ge-site-wrapper a {
    text-decoration: none !important;
}

.ge-site-wrapper img {
    max-width: 100% !important;
    height: auto;
    display: block;
}

.ge-site-wrapper .material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
}

.hero-slide-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(90deg, rgba(10, 31, 68, 0.95) 0%, rgba(10, 31, 68, 0.85) 50%, rgba(10, 31, 68, 0.35) 100%) !important;
    z-index: 2 !important;
}

.services-bento-grid {
    display: grid !important;
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    gap: 2rem !important;
    width: 100% !important;
}
@media (min-width: 768px) {
    .services-bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
@media (min-width: 1024px) {
    .services-bento-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

.service-card-item {
    background: #ffffff !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 320px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease !important;
}
.service-card-item:hover {
    border-color: #168ce3 !important;
    box-shadow: 0 12px 24px -6px rgba(22, 140, 227, 0.15) !important;
    transform: translateY(-3px) !important;
}

.service-card-dark {
    background: linear-gradient(135deg, #0A1F44 0%, #061124 100%) !important;
    color: #ffffff !important;
    border: 1px solid #1e293b !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 320px !important;
}

.cta-banner-dark {
    background: linear-gradient(90deg, #0A1F44 0%, #0f2c5e 50%, #0A1F44 100%) !important;
    color: #ffffff !important;
    padding: 4rem 1.5rem !important;
    text-align: center !important;
}

.footer-dark {
    background-color: #0A1F44 !important;
    color: #cbd5e1 !important;
    padding: 4rem 1.5rem 2rem 1.5rem !important;
    border-top: 1px solid #1e293b !important;
}
.footer-dark h4 {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
}
.footer-dark a {
    color: #cbd5e1 !important;
    transition: color 0.2s !important;
}
.footer-dark a:hover {
    color: #168ce3 !important;
}
