.eg-container {
    width: 100%;
    box-sizing: border-box;
    padding: 80px 60px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.eg-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.eg-pretitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.eg-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.eg-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.eg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.eg-grid-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Add vertical grid line */
.eg-grid-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
}

.eg-grid-item:nth-child(even) {
    padding-right: 0;
}

/* Handle borders for bottom rows */
.eg-grid-item:nth-child(n+3) {
    border-bottom: none;
}

.eg-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.02);
}

.eg-icon-wrapper svg {
    display: block;
}

.eg-item-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.eg-item-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .eg-container {
        padding: 40px 20px;
    }
    .eg-title {
        font-size: 32px;
    }
    .eg-grid {
        grid-template-columns: 1fr;
    }
    .eg-grid-item {
        padding: 30px 0 !important;
        border-right: none !important;
    }
}
