.container {
            max-width: 960px;
            margin: auto;
            padding: 60px 20px;
        }
        
/* Hero Section with Globe */
.hero {
    text-align: center;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #0276BD;
}

.hero h2 {
    font-size: 1.6em;
    font-weight: normal;
    color: #495057;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #6c757d;
}

.hero-stats {
    font-size: 1.5em;
    font-weight: bold;
    color: #949CA1;
    margin-bottom: 40px;
}

/* Animated Globe Background */
.globe-containers {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    opacity: 0.3;
    z-index: 1;
}

.globes {
    width: 100%;
    height: 100%;
    border: 2px solid #166697;
    border-radius: 50%;
    position: relative;
    animation: update-rotate 60s linear infinite;
}

.satellites {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0276BD;
    border-radius: 2px;
    animation: update-orbit 20s linear infinite;
}

.satellites:nth-child(1) {
    top: 10%;
    left: 50%;
    animation-delay: 0s;
}

.satellites:nth-child(2) {
    top: 50%;
    left: 10%;
    animation-delay: -7s;
}

.satellites:nth-child(3) {
    top: 80%;
    left: 70%;
    animation-delay: -14s;
}

.satellites:nth-child(4) {
    top: 30%;
    left: 85%;
    animation-delay: -3.5s;
}

@keyframes update-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes update-orbit {
    from { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}

/* EarthSmart Banner */
.earthsmart-banner {
    background: #0276BD;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    /* border-bottom: 4px solid #495057; */
}

.earthsmart-content {
    max-width: 800px;
    margin: auto;
}

.earthsmart-banner h3 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
}

.earthsmart-banner p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ffffff;
}

.earthsmart-highlight {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 6px;
    display: inline-block;
    font-weight: bold;
    font-size: 1.1em;
}

/* Strategic Metrics Bar */
.metrics-bar {
    background: #0276BD;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.metrics-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.metrics-container:last-child {
    margin-bottom: 0;
}

.metric {
    padding: 15px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.metric-number {
    font-size: 1.8em;
    font-family: 'HelveticaNeueBold', Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.75em;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Sections */
section {
    max-width: 960px;
    margin: auto;
    padding: 80px 20px;
}

section h3 {
    font-size: 2.8em;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
    color: #0276BD;
}

.section-subtitle {
    font-size: 1.3em;
    text-align: center;
    color: #6c757d;
    margin-bottom: 50px;
    font-style: italic;
}

/* Value Props Grid */
.value-props {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.value-prop {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-prop-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #495057;
}

.value-prop h4 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #495057;
}

.value-prop p {
    color: #6c757d;
    line-height: 1.7;
}

/* Bullets */
.bullets {
    text-align: center;
    font-size: 1.2em;
    max-width: 700px;
    margin: auto;
}

.bullets p {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #495057;
}

.bullets strong {
    color: #949CA1;
}

/* Special Callout Box */
.execution-callout {
    margin: 40px auto;
    padding: 25px;
    background: #0276BD;
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
    max-width: 750px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border: 1px solid #0276BD;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.execution-callout h4 {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
}

.execution-callout p {
    font-size: 1.3em;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
}

/* Competitive Moat Section */
.moat-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

.moat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.moat-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.moat-item h5 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #495057;
}

.moat-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Network Section */
.network-section {
    background: #0276BD;
    color: #ffffff;
    padding: 80px 20px;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.network-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.network-item h4 {
    padding-top: 30px;
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #ffffff;
}

.network-item p {
    color:rgb(240, 240, 240);
    line-height: 1.8;
    padding-bottom: 30px;
}

/* CTA Section */
.cta {
    text-align: center;
    background: #0276BD;
    color: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: auto;
}

.cta h3 {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #ffffff;
}

.cta a {
    background: #ffffff;
    color: #949CA1;
    padding: 18px 36px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-radius: 6px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.9em;
    background: #f8f9fa;
    padding: 50px 20px 30px;
    border-top: 1px solid #e9ecef;
}

footer a {
    color: #495057;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #949CA1;
}

.footer-tagline {
    margin-top: 30px;
    font-weight: bold;
    color: #949CA1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4em;
    }
    
    .hero h2 {
        font-size: 1.3em;
    }
    
    .globe-container {
        display: none;
    }

    .globes {
        display: none !important;
    }

    .satellites {
        display: none !important;
    }
    
    .metrics-container {
        grid-template-columns: 1fr;
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .moat-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .moat-item {
        text-align: center;
        padding: 40px 20px;
        background: #f8f9fa;
        border-radius: 8px;
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        margin-bottom: 20px;
    }
    .moat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.13);
    }
    
    .network-grid {
        grid-template-columns: 1fr;
    }
    
    .execution-callout {
        margin: 30px 10px;
        padding: 20px;
    }
    
    .execution-callout h4 {
        font-size: 1.3em;
    }
    
    .execution-callout p {
        font-size: 1.1em;
    }
}
