/* ==========================================================================
   INFRASTRUCTURE SECTION STYLES
   ========================================================================== */

/* 
 * Section container styling 
 * Dark background with subtle grid pattern
 */
.infrastructure-section {
    font-family: 'ABC Normal', 'IBM Plex Sans';
    background-color: #242424FF;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    color: #fff;
    padding: 100px 20px;
    overflow: hidden;
    background-attachment: fixed;
}

/* 
 * Header container
 * Centers the title and subtitle
 */
.infrastructure-header {
    max-width: 1200px;
    width: 100%;
    margin: 0 0 60px 0;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 
 * Main Title
 * Large, bold typography
 */
.infrastructure-title {
    max-width: 1200px;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
}

.infrastructure-subtitle {
    max-width: 800px;
    font-size: 1.25rem;
    color: #a1a1aa;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

/* 
 * Image Container
 * Constraints the main visualization image
 */
.infrastructure-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* 
 * Main Image
 * Responsive image scaling
 */
.infrastructure-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 
 * Responsive Adjustments
 * Adapt font sizes and padding for smaller screens
 */
@media (max-width: 768px) {
    .infrastructure-section {
        padding: 40px 15px;
    }

    .infrastructure-header {
        margin-bottom: 30px;
    }

    .infrastructure-title {
        font-size: 1.85rem;
        margin-bottom: 16px;
        text-align: left;
    }

    .infrastructure-subtitle {
        font-size: 1rem;
        text-align: left;
    }
}